C# 클래스 LinFu.AOP.Cecil.InvocationInfo

상속: IInvocationInfo
파일 보기 프로젝트 열기: philiplaureano/LinFu 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

InvocationInfo() 공개 메소드

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.
리턴 System

ToString() 공개 메소드

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