메소드 | 설명 | |
---|---|---|
Add ( string key, object value ) : void |
Adds a key/value pair to the property set
|
|
AddToXml ( TNode parentNode, bool recursive ) : TNode |
Returns an XmlNode representing the PropertyBag after adding it as a child of the supplied parent node.
|
|
ContainsKey ( string key ) : bool |
Gets a flag indicating whether the specified key has any entries in the property set.
|
|
Get ( string key ) : object |
Gets a single value for a key, using the first one if multiple _values are present and returning null if the value is not found.
|
|
Set ( string key, object value ) : void |
Sets the value for a key, removing any other _values that are already in the property set.
|
|
ToXml ( bool recursive ) : TNode |
Returns an XmlNode representing the current PropertyBag.
|
|
this ( string key ) : IList |
Gets or sets the list of _values for a particular key
|
public Add ( string key, object value ) : void | ||
key | string | The key |
value | object | The value |
리턴 | void |
public AddToXml ( TNode parentNode, bool recursive ) : TNode | ||
parentNode | TNode | The parent node. |
recursive | bool | Not used |
리턴 | TNode |
public ContainsKey ( string key ) : bool | ||
key | string | The key to be checked |
리턴 | bool |