C# Класс System.Windows.Mvvm.Configuration.Stores.FileStore

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

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

Метод Описание
FileStore ( string fileName ) : System.IO

Initializes a new FileStore 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.

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

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

Initializes a new FileStore instance.
public FileStore ( string fileName ) : System.IO
fileName string The name of the file where the configuration data is stored.
Результат System.IO

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