Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

applicationdatacreatedisposition.md

File metadata and controls

29 lines (20 loc) · 1.07 KB
-api-id -api-type
T:Windows.Storage.ApplicationDataCreateDisposition
winrt enum

ApplicationDataCreateDisposition

-description

Specifies options for creating application data containers or returning existing containers. This enumeration is used by the ApplicationDataContainer.CreateContainer method.

-enum-fields

-field Always:0

Always returns the specified container. Creates the container if it does not exist.

-field Existing:1

Returns the specified container only if it already exists. Raises an exception of type System.Exception if the specified container does not exist.

-remarks

-examples

See the code example in ApplicationDataContainer.

-see-also

Store and retrieve settings and other app data, ApplicationDataContainer.CreateContainer