ApplicationDataLocality 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.
Specifies the type of data store.
public enum class ApplicationDataLocality
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Windows.Storage.ApplicationDataContract, 65536)]
enum class ApplicationDataLocality
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Windows.Storage.ApplicationDataContract), 65536)]
public enum ApplicationDataLocality
var value = Microsoft.Windows.Storage.ApplicationDataLocality.local
Public Enum ApplicationDataLocality
- Inheritance
-
ApplicationDataLocality
- Attributes
Fields
Name | Value | Description |
---|---|---|
Local | 0 | The data resides in the local application data store. |
Temporary | 2 | The data resides in the temporary application data store. |
LocalCache | 3 | The data resides in the local cache for the application data store. |
SharedLocal | 4 | The data resides in the shared local application data store. |
Machine | 1000 | The data resides in a machine-specific application data store. |
Remarks
Note that values 0-99 match Windows.Storage.ApplicationDataLocality; any values 1000+ are unique to Windows App SDK.