C# Класс Windows.Mvvm.Configuration.Stores.ApplicationDataStore

Represents a store that uses the application data to save the configuration data.
Наследование: IStore
Показать файл Открыть проект

Открытые методы

Метод Описание
ApplicationDataStore ( ApplicationDataContainer applicationDataContainer ) : System

Initializes a new ApplicationDataStore instance.

LoadAsync ( ) : Task

Loads the stores configuration data and returns them as serialized string.

StoreAsync ( string content ) : System.Threading.Tasks.Task

Stores the configuration data.

Описание методов

ApplicationDataStore() публичный Метод

Initializes a new ApplicationDataStore instance.
public ApplicationDataStore ( ApplicationDataContainer applicationDataContainer ) : System
applicationDataContainer Windows.Storage.ApplicationDataContainer The application data container in which the configuration is to be stored.
Результат System

LoadAsync() публичный Метод

Loads the stores configuration data and returns them as serialized string.
public LoadAsync ( ) : Task
Результат Task

StoreAsync() публичный Метод

Stores the configuration data.
public StoreAsync ( string content ) : System.Threading.Tasks.Task
content string The serializes configuration data.
Результат System.Threading.Tasks.Task