Class DynamicProperty<PropertyType>
Represents a generic property
public class DynamicProperty<PropertyType> : GenericProperty<PropertyType>, IGenericProperty, IGenericExtension
Type Parameters
PropertyType
- Inheritance
-
objectGenericExtension<PropertyType>GenericProperty<PropertyType>DynamicProperty<PropertyType>
- Implements
- Inherited Members
- Extension Methods
Constructors
DynamicProperty(string, Func<PropertyType>, Action<PropertyType>)
Constructor
public DynamicProperty(string name, Func<PropertyType> getter, Action<PropertyType> setter = null)
Parameters
name
stringProperty name
getter
Func<PropertyType>Getter function
setter
Action<PropertyType>Setter function
Properties
Getter
Gets or sets the getter for the property
protected Func<PropertyType> Getter { get; set; }
Property Value
- Func<PropertyType>
Setter
Gets or sets the setter for the property
protected Action<PropertyType> Setter { get; set; }
Property Value
- Action<PropertyType>
Value
Property value
public override PropertyType Value { get; set; }
Property Value
- PropertyType