Table of Contents

Class DynamicProperty<PropertyType>

Namespace
CMS.Base
Assembly
CMS.Base.dll

Represents a generic property

public class DynamicProperty<PropertyType> : GenericProperty<PropertyType>, IGenericProperty, IGenericExtension

Type Parameters

PropertyType
Inheritance
object
GenericExtension<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 string

Property 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