GetValueResult 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.
The result of an operation to retrieve a value from the settings store.
public enum class GetValueResult
public enum class GetValueResult
enum GetValueResult
public enum GetValueResult
type GetValueResult =
Public Enum GetValueResult
- Inheritance
-
GetValueResult
Fields
Name | Value | Description |
---|---|---|
Success | 0 | The value was retrieved and converted to the specified type successfully. |
Missing | 1 | The value is not present in the store. |
Corrupt | 2 | The stored value could not be deserialized. |
IncompatibleType | 3 | The deserialized value could not be converted to the specified type. |
ObsoleteFormat | 4 | The stored value is in a old serialization format that is no longer supported. |
UnknownError | 5 | An unexpected error occurred. |