C# 클래스 NProxy.Core.Internal.Reflection.MethodBaseExtensions

Provides MethodBase extension methods.
파일 보기 프로젝트 열기: mtamme/NProxy

공개 메소드들

메소드 설명
CanOverride ( this methodBase ) : bool

Returns a value indicating whether the specified method is overrideable.

GetFullName ( this methodBase ) : string

Returns the full name of the specified method.

GetParameterTypes ( this methodBase ) : System.Type[]

Returns the parameter types of the specified method.

MapGenericParameterTypes ( this methodBase, Type genericTypes ) : System.Type[]

Maps the parameter types to the specified generic types.

메소드 상세

CanOverride() 공개 정적인 메소드

Returns a value indicating whether the specified method is overrideable.
public static CanOverride ( this methodBase ) : bool
methodBase this The method base.
리턴 bool

GetFullName() 공개 정적인 메소드

Returns the full name of the specified method.
public static GetFullName ( this methodBase ) : string
methodBase this The method base.
리턴 string

GetParameterTypes() 공개 정적인 메소드

Returns the parameter types of the specified method.
public static GetParameterTypes ( this methodBase ) : System.Type[]
methodBase this The method base.
리턴 System.Type[]

MapGenericParameterTypes() 공개 정적인 메소드

Maps the parameter types to the specified generic types.
public static MapGenericParameterTypes ( this methodBase, Type genericTypes ) : System.Type[]
methodBase this The method base.
genericTypes System.Type The generic types.
리턴 System.Type[]