C# 클래스 Windows.Mvvm.Configuration.Stores.ApplicationDataStore

Represents a store that uses the application data to save the configuration data.
상속: IStore
파일 보기 프로젝트 열기: lecode-official/mvvm-framework

공개 메소드들

메소드 설명
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