Interface IAttributeDefinitionProperty<T>
Interface representing the attribute definitions of a property.
Namespace:Extend
Assembly:Extend.dll
Syntax
public interface IAttributeDefinitionProperty<T>
where T : Attribute
Type Parameters
Name | Description |
---|---|
T | The type of the attributes. |
Properties
| Improve this Doc View SourceAttributes
Gets or sets a collection of attributes of the specified type.
Declaration
IEnumerable<T> Attributes { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><T> | A collection of attributes of the specified type. |
Property
Gets or sets the property which is decorated with the attributes.
Declaration
PropertyInfo Property { get; set; }
Property Value
Type | Description |
---|---|
System.Reflection.PropertyInfo | The property which is decorated with the attributes. |