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

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

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

Метод Описание
LoadAsync ( ) : Task

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

SettingsStore ( System.Configuration.ApplicationSettingsBase settings ) : System.Configuration

Initializes a new SettingsStore instance.

SettingsStore ( System.Configuration.ApplicationSettingsBase settings, string propertyName ) : System.Configuration

Initializes a new SettingsStore instance.

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

Stores the configuration data.

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

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

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

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

Initializes a new SettingsStore instance.
public SettingsStore ( System.Configuration.ApplicationSettingsBase settings ) : System.Configuration
settings System.Configuration.ApplicationSettingsBase The settings that are used to store the configuration data.
Результат System.Configuration

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

Initializes a new SettingsStore instance.
public SettingsStore ( System.Configuration.ApplicationSettingsBase settings, string propertyName ) : System.Configuration
settings System.Configuration.ApplicationSettingsBase The settings that are used to store the configuration data.
propertyName string The name of the property which is used to store the settings.
Результат System.Configuration

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

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