Class AttributeDefinitionProperty<T>
Class representing a attribute definition.
Inheritance
System.Object
AttributeDefinitionProperty<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:Extend
Assembly:Extend.dll
Syntax
public class AttributeDefinitionProperty<T> : IAttributeDefinitionProperty<T> where T : Attribute
Type Parameters
Name | Description |
---|---|
T | The type of the attribute. |
Properties
| Improve this Doc View SourceAttributes
Gets or sets a collection of attributes of the specified type.
Declaration
public IEnumerable<T> Attributes { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><T> | A collection of attributes of the specified type. |
Implements
| Improve this Doc View SourceProperty
Gets or sets the property which is decorated with the attributes.
Declaration
public PropertyInfo Property { get; set; }
Property Value
Type | Description |
---|---|
System.Reflection.PropertyInfo | The property which is decorated with the attributes. |