Class AttributeDefinitionType<T>
Class representing a type and it's attributes of a specific type.
Inheritance
System.Object
AttributeDefinitionType<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 AttributeDefinitionType<T> : 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
public IEnumerable<T> Attributes { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><T> | The attributes. |
Implements
| Improve this Doc View SourceType
Gets or sets the type.
Declaration
public Type Type { get; set; }
Property Value
Type | Description |
---|---|
System.Type | The type. |