C# Класс openhabUWP.App

Показать файл Открыть проект

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

Метод Описание
App ( ) : System.Threading.Tasks

Initializes a new instance of the App class.

Защищенные методы

Метод Описание
ConfigureContainer ( ) : void

Creates and configures the container and service locator

OnInitializeAsync ( IActivatedEventArgs args ) : System.Threading.Tasks.Task

Override this method with the initialization logic of your application. Here you can initialize services, repositories, and so on.

OnLaunchApplicationAsync ( LaunchActivatedEventArgs args ) : System.Threading.Tasks.Task

Override this method with logic that will be performed after the application is initialized. For example, navigating to the application's home page.

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

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

Initializes a new instance of the App class.
public App ( ) : System.Threading.Tasks
Результат System.Threading.Tasks

ConfigureContainer() защищенный Метод

Creates and configures the container and service locator
protected ConfigureContainer ( ) : void
Результат void

OnInitializeAsync() защищенный Метод

Override this method with the initialization logic of your application. Here you can initialize services, repositories, and so on.
protected OnInitializeAsync ( IActivatedEventArgs args ) : System.Threading.Tasks.Task
args IActivatedEventArgs The instance containing the event data.
Результат System.Threading.Tasks.Task

OnLaunchApplicationAsync() защищенный Метод

Override this method with logic that will be performed after the application is initialized. For example, navigating to the application's home page.
protected OnLaunchApplicationAsync ( LaunchActivatedEventArgs args ) : System.Threading.Tasks.Task
args Windows.ApplicationModel.Activation.LaunchActivatedEventArgs The instance containing the event data.
Результат System.Threading.Tasks.Task