C# Class LinFu.AOP.Cecil.InvocationInfo

Inheritance: IInvocationInfo
Afficher le fichier Open project: philiplaureano/LinFu Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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.
Résultat System

ToString() public méthode

Returns a string that represents the current object.
public ToString ( ) : string
Résultat string