C# Класс NProxy.Core.Internal.Reflection.MethodBaseExtensions

Provides MethodBase extension methods.
Показать файл Открыть проект

Открытые методы

Метод Описание
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[]