Property | Type | Description | |
---|---|---|---|
GetPropertyRefFromList |
Method | Description | |
---|---|---|
GetPropertyRef ( string propertyName ) : |
Retrieves a singleton instance to the handle to the named property.
|
|
ToJson ( ) : string |
Serializes the model to JSON.
|
Method | Description | |
---|---|---|
FirePropertyChanged ( string propertyName ) : void |
Fires the 'PropertyChanged' event.
|
|
Get ( string propertyName, object defaultValue ) : object |
Retrieves a property value from the backing store.
|
|
OnDisposed ( ) : void | ||
Set ( string propertyName, object value, object defaultValue ) : bool |
Stores the given value for the named property (firing the 'PropertyChanged' event if the value differs from the current value).
|
Method | Description | |
---|---|---|
GetPropertyRefFromList ( string propertyName ) : |
protected FirePropertyChanged ( string propertyName ) : void | ||
propertyName | string | The name of the property that has changed. |
return | void |
protected Get ( string propertyName, object defaultValue ) : object | ||
propertyName | string | The name of the property. |
defaultValue | object | The default value to provide (if the value does not exist). |
return | object |
public GetPropertyRef ( string propertyName ) : |
||
propertyName | string | The name of the property to retrieve. |
return |
protected Set ( string propertyName, object value, object defaultValue ) : bool | ||
propertyName | string | The name of the property. |
value | object | The value to set. |
defaultValue | object | The default value of the property. |
return | bool |