Class PropertyBag
Property bag implementation.
Can store arbitrary data accessed by parameter/property name. Use [] indexer to store/retrieve data. e.g. bag["parameter"] = value; If property is not defined returns null.
public class PropertyBag : IPropertyBag
- Inheritance
-
PropertyBag
- Implements
- Derived
- Inherited Members
Constructors
PropertyBag()
public PropertyBag()
Properties
this[string]
public object this[string propertyName] { get; set; }
Parameters
propertyName
string