C# Class NProxy.Core.Internal.Reflection.MethodBaseExtensions

Provides MethodBase extension methods.
Afficher le fichier Open project: mtamme/NProxy

Méthodes publiques

Méthode Description
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.

Method Details

CanOverride() public static méthode

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

GetFullName() public static méthode

Returns the full name of the specified method.
public static GetFullName ( this methodBase ) : string
methodBase this The method base.
Résultat string

GetParameterTypes() public static méthode

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

MapGenericParameterTypes() public static méthode

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