C# Class LinFu.AOP.Cecil.InvocationInfo

Inheritance: IInvocationInfo
ファイルを表示 Open project: philiplaureano/LinFu Class Usage Examples

Public Methods

Method Description
InvocationInfo ( object target, MethodBase targetMethod, StackTrace stackTrace, Type parameterTypes, Type typeArguments, Type returnType, object arguments ) : System

Initializes the InvocationInfo instance.

ToString ( ) : string

Returns a string that represents the current object.

Method Details

InvocationInfo() public method

Initializes the InvocationInfo instance.
public InvocationInfo ( object target, MethodBase targetMethod, StackTrace stackTrace, Type parameterTypes, Type typeArguments, Type returnType, object arguments ) : System
target object The target instance currently being called.
targetMethod System.Reflection.MethodBase The method currently being called.
stackTrace System.Diagnostics.StackTrace The associated with the method call when the call was made.
parameterTypes System.Type The parameter types for the current target method.
typeArguments System.Type /// If the method is a generic method, /// this will hold the generic type arguments used to construct the /// method. ///
returnType System.Type The return type of the target method.
arguments object The arguments used in the method call.
return System

ToString() public method

Returns a string that represents the current object.
public ToString ( ) : string
return string