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

Provides PropertyInfo extension methods.
Exibir arquivo Open project: mtamme/NProxy

Public Methods

Method 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 method

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

GetAccessorMethods() public static method

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

GetFullName() public static method

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

GetIndexParameterTypes() public static method

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