| Name | Description |
---|
 | ContainsGroup |
Determines if a group exists.
|
 | ContainsKey |
Determines if a setting key exists in a group.
|
 | DeleteAll |
Deletes all groups and the setting keys they contain.
|
 | DeleteGroup |
Deletes a group and all the setting keys it contains.
|
 | DeleteKey |
Deletes a setting key from a group.
|
 | Export |
Exports all settings to an XElement that is shaped to represent the structure
of the settings backing storage.
|
 | Get(Object, Object) |
Gets a string value from the settings, uniquely identified by the group
and key parameters.
|
 | Get(Object, Object, String) |
Gets a string value (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | GetT(Object, Object, T) |
Gets an object of type T (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | GetBool(Object, Object) |
Gets a nullable bool value from the settings, uniquely identified by the group
and key parameters.
|
 | GetBool(Object, Object, Boolean) |
Gets a bool value (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | GetBuffer |
Gets a byte array value (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | GetDateTime(Object, Object) |
Gets a nullable DateTime value from the settings, uniquely identified by the group
and key parameters.
|
 | GetDateTime(Object, Object, DateTime) |
Gets a DateTime value (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | GetDateTimeOffset(Object, Object) |
Gets a nullable DateTimeOffset value from the settings, uniquely identified by the group
and key parameters.
|
 | GetDateTimeOffset(Object, Object, DateTimeOffset) |
Gets a DateTimeOffset value (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | GetDecimal(Object, Object) |
Gets a nullable decimal value from the settings, uniquely identified by the group
and key parameters.
|
 | GetDecimal(Object, Object, Decimal) |
Gets a decimal value (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | GetDouble(Object, Object) |
Gets a nullable double value from the settings, uniquely identified by the group
and key parameters.
|
 | GetDouble(Object, Object, Double) |
Gets a double value (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | GetFloat(Object, Object) |
Gets a nullable float value from the settings, uniquely identified by the group
and key parameters.
|
 | GetFloat(Object, Object, Single) |
Gets a float value (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | GetGuid(Object, Object) |
Gets a nullable Guid value from the settings, uniquely identified by the group
and key parameters.
|
 | GetGuid(Object, Object, Guid) |
Gets a Guid value (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | GetInt(Object, Object) |
Gets a nullable int value from the settings, uniquely identified by the group
and key parameters.
|
 | GetInt(Object, Object, Int32) |
Gets a int value (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | GetInts |
Gets an int array (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | GetLong(Object, Object) |
Gets a nullable long value from the settings, uniquely identified by the group
and key parameters.
|
 | GetLong(Object, Object, Int64) |
Gets a long value (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | GetLongs |
Gets an long array (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | GetObject |
Gets an untyped object from the settings, uniquely identified by the group and key parameters.
This method is designed to be used when the type of the setting value is not known at compile time.
|
 | GetStrings |
Gets a string array (or fallback default value) from the settings, uniquely identified by the group
and key parameters.
|
 | ListGroups |
List group names. The null unnamed group will be included if any values are stored in the unnamed group.
|
 | ListKeys |
List setting key names in a specified group.
|
 | Put |
Puts an Object into the settings, uniquely identified by the group
and key parameters.
|