struct WrappedMethod
Provides data about a wrapped method in a callback.
public Action Resume { get; set; }
Invoke the original method.
public object Object { get; set; }
The object whose method is being wrapped. This will be null if we're wrapping a static method.
public bool IsStatic { get; set; }
Is this a static method?
public string TypeName { get; set; }
The name of the type that the method belongs to.
public string MethodName { get; set; }
The name of the original method.
public int MethodIdentity { get; set; }
The Identity of the original method. This is an integer that each MethodDescription has to distinguish itself from other methods of the same class.
public Attribute[] Attributes { get; set; }
An array of all attributes decorated with on the original method.
public U GetAttribute( )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public Type GetType( )
😔 No documentation found.