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