Click or drag to resize

AzureTableSettings Methods

The AzureTableSettings type exposes the following members.

Methods
 NameDescription
Public methodDelete Deletes a setting.
Public methodDeleteApplication Deletes all setting items with a specified Application key.
Public methodExportAsXML Exports all settings as an XML fragament.
Public methodGet Gets the string value of a setting.
Public methodGetBool(Object, Object) Gets a nullable bool value of a setting.
Public methodGetBool(Object, Object, Boolean) Gets a bool value of a setting, or a default fallback value if the setting is not found.
Public methodGetBytes(Object, Object) Gets a nullable byte array value of a setting.
Public methodGetBytes(Object, Object, Byte) Gets a byte array value of a setting, or a default fallback value if the setting is not found.
Public methodGetDateTime(Object, Object) Gets a nullable DateTime value of a setting.
Public methodGetDateTime(Object, Object, DateTime) Gets a DateTime value of a setting, or a default fallback value if the setting is not found.
Public methodGetDateTimeOffset(Object, Object) Gets a nullable DateTimeOffset value of a setting.
Public methodGetDateTimeOffset(Object, Object, DateTimeOffset) Gets a DateTimeOffset value of a setting, or a default fallback value if the setting is not found.
Public methodGetDecimal(Object, Object) Gets a nullable Decimal value of a setting.
Public methodGetDecimal(Object, Object, Decimal) Gets the Decimal value of a setting, or a default fallback value if the setting is not found.
Public methodGetGuid(Object, Object) Gets a nullable Guid value of a setting.
Public methodGetGuid(Object, Object, Guid) Gets a Guid value of a setting, or a default fallback value if the setting is not found.
Public methodGetInt(Object, Object) Gets a nullable 32-bit integer value of a setting.
Public methodGetInt(Object, Object, Int32) Gets a 32-bit integer value of a setting, or a default fallback value if the setting is not found.
Public methodGetLong(Object, Object) Gets a nullable 64-bit integer value of a setting.
Public methodGetLong(Object, Object, Int64) Gets a 64-bit integer value of a setting, or a default fallback value if the setting is not found.
Public methodGetSettingT(Object, Object)

Gets a generic type of value of a setting.

This method can be used to get custom Types from a setting's value. An attempt is made to deserialize the setting's raw string value into the requested return Type. If deserialization fails, then processing continues as if the setting was not found, which returns the Type's default value or the fallback parameter value if it's available.

This method is suitable for enum Types.

Public methodGetSettingT(Object, Object, T)

Gets a generic type of value of a setting, or a default fallback value if the setting is not found.

This method can be used to get custom Types from a setting's value. An attempt is made to deserialize the setting's raw string value into the requested return Type. If deserialization fails, then processing continues as if the setting was not found, which returns the Type's default value or the fallback parameter value if it's available.

This method is suitable for enum Types.

Public methodGetStrings(Object, Object) Gets a nullable string array value of a setting.
Public methodGetStrings(Object, Object, String) Gets a string array value of a setting, or a default fallback value if the setting is not found.
Public methodListAllKeys List all pairs of application keys and item keys.
Public methodListApplicationKeys List all the distinct application key groups.
Public methodListItemKeys List all the item keys in an application key group.
Public methodPut Puts a value into the settings table.
Top
See Also