Class DynamicProperty
DynamicProperty
public class DynamicProperty
- Inheritance
-
DynamicProperty
- Inherited Members
- Extension Methods
Constructors
DynamicProperty(string, Type, IList<DynamicAttribute>?)
Initializes a new instance of the DynamicProperty class.
public DynamicProperty(string name, Type type, IList<DynamicAttribute>? attributes = null)
Parameters
name
stringThe name from the property.
type
TypeThe type from the property.
attributes
IList<DynamicAttribute>The list of attributes to annotate the property (optional)
Properties
Attributes
Gets the list of attributes
public IList<DynamicAttribute> Attributes { get; }
Property Value
- IList<DynamicAttribute>
The attributes from the property.
Name
Gets the name from the property.
public string Name { get; }
Property Value
- string
The name from the property.
Type
Gets the type from the property.
public Type Type { get; }
Property Value
- Type
The type from the property.
Methods
ToString()
public override string ToString()