SettingsType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Data types of the properties that are stored inside the collections.
public enum class SettingsType
public enum class SettingsType
enum SettingsType
public enum SettingsType
type SettingsType =
Public Enum SettingsType
- Inheritance
-
SettingsType
Fields
Name | Value | Description |
---|---|---|
Invalid | 0 | Invalid data type. |
Int32 | 1 | Data type used to store 4 byte (32 bits) properties which are Boolean, Int32 and UInt32. Note that Boolean is stored 1 byte in the .NET environment but as a property inside the SettingsStore, it is kept as 4 byte value and any value other than 0 is converted to true and 0 is converted to false. |
Int64 | 2 | Data type used to store 8 byte (64 bit) properties which are Int64 and UInt64. |
String | 3 | Data type used to store the strings. |
Binary | 4 | Data type used to store byte streams (arrays). |
MultiString | 5 | Data type used to store the multi-strings. |