Property | Type | Description |
---|
Method | Description | |
---|---|---|
Delete ( System.Guid dataValueId ) : void |
Deletes the specified data value.
|
|
Delete ( string dataValueAlias ) : void |
Deletes the data value with the specified alias.
|
|
JsonDataValuePersistence ( ) : System |
Default constructor.
|
|
Persist ( DataValue dataValue ) : void |
Persists a data value to the file system.
|
|
Retrieve ( System.Guid dataValueId ) : DataValue |
Gets the data value with the specified ID.
|
|
Retrieve ( string dataValueAlias ) : DataValue |
Gets the data value with the specified alias.
|
|
RetrieveChildren ( System.Guid parentId ) : IEnumerable |
Gets all the data values that are the children of the folder with the specified ID. You can specify a parent ID of null to get the root data values. |
public Delete ( System.Guid dataValueId ) : void | ||
dataValueId | System.Guid | The ID of the data value to delete. |
return | void |
public Delete ( string dataValueAlias ) : void | ||
dataValueAlias | string | /// The alias of the data value to delete. /// |
return | void |
public Persist ( DataValue dataValue ) : void | ||
dataValue | DataValue | The data value to persist. |
return | void |
public Retrieve ( System.Guid dataValueId ) : DataValue | ||
dataValueId | System.Guid | /// The ID of the data value. /// |
return | DataValue |
public Retrieve ( string dataValueAlias ) : DataValue | ||
dataValueAlias | string | The alias of the data value. |
return | DataValue |
public RetrieveChildren ( System.Guid parentId ) : IEnumerable |
||
parentId | System.Guid | The parent ID. |
return | IEnumerable |