Methods
|
boolean CreateWeblicationKey(string newKey)
|
Create a new key for the weblication
with name specified by the string newKey
. Returns true on success
|
boolean DeleteWeblicationKey(string key)
|
Deletes the weblication key with
name specified by key. Returns true
on success
|
boolean DeleteWeblicationValue(string key, valueName)
|
Deletes the value field
valueName from the key given by key
. Returns true on success
|
{string, array, boolean, long, float} QueryWeblicationValue(string key,
string valueName)
|
Returns the data stored in the value
field valueName of
key. May return a string, array of strings, boolean, integer or
floating point value
|
boolean SetWeblicationValue(string key,
string valueName,
{string, array, boolean, long, float} data)
|
Sets the contents of the value field
valueName of
key to data. The allowed types
for data are: string, array of strings,
boolean, integer and floating point numbers. Returns true on success
|
array EnumWeblicationKeys(string key)
|
Returns an array of strings representing
all immediate sub-keys of the given key. You can use this function to traverse
the weblication registry
|
array EnumWeblicationValues(string key)
|
Returns an array of strings representing
all names of value fields of the given key. You can use this function to
traverse the weblication registry
|
boolean CreateKey(string rootKey,
string newKey)
|
Same as CreateWeblicationKey(...)
, but with base registry specified by rootKey
|
boolean DeleteKey(string rootKey,
string key)
|
Same as DeleteWeblicationKey(
...), but with base registry specified by rootKey
|
boolean DeleteValue(string rootKey,
string key,
string valueName)
|
Same as DeleteWeblicationValue(...
), but with base registry specified by rootKey
|
{string, array, boolean, long, float} QueryValue(
rootKey, key,
valueName)
|
Same as QueryWeblicationValue(...
), but with base registry specified by rootKey
|
boolean SetValue(string rootKey,
string key,
string valueName,
{string, array, boolean, long, float} data)
|
Same as SetWeblicationValue(...
), but with base registry specified by rootKey
|
array EnumKeys(string rootKey,
string key)
|
Same as EnumWeblicationKeys(...)
, but with base registry specified by rootKey
|
array EnumValues(string rootKey,
string key)
|
Same as EnumWeblicationValues(
...), but with base registry specified by rootKey
|