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

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

Méthodes publiques

Méthode Description
CanOverride ( this propertyInfo ) : bool

Returns a value indicating whether the specified property is overrideable.

GetAccessorMethods ( this propertyInfo ) : IEnumerable

Returns all accessor methods for the specified property.

GetFullName ( this propertyInfo ) : string

Returns the full name of the specified property.

GetIndexParameterTypes ( this propertyInfo ) : System.Type[]

Returns the index parameter types of the specified property.

Method Details

CanOverride() public static méthode

Returns a value indicating whether the specified property is overrideable.
public static CanOverride ( this propertyInfo ) : bool
propertyInfo this The property information.
Résultat bool

GetAccessorMethods() public static méthode

Returns all accessor methods for the specified property.
public static GetAccessorMethods ( this propertyInfo ) : IEnumerable
propertyInfo this The property information.
Résultat IEnumerable

GetFullName() public static méthode

Returns the full name of the specified property.
public static GetFullName ( this propertyInfo ) : string
propertyInfo this The property information.
Résultat string

GetIndexParameterTypes() public static méthode

Returns the index parameter types of the specified property.
public static GetIndexParameterTypes ( this propertyInfo ) : System.Type[]
propertyInfo this The property information.
Résultat System.Type[]