C# Class openhabUWP.App

显示文件 Open project: altima/openhabUWP

Public Methods

Method Description
App ( ) : System.Threading.Tasks

Initializes a new instance of the App class.

Protected Methods

Method Description
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.

Method Details

App() public method

Initializes a new instance of the App class.
public App ( ) : System.Threading.Tasks
return System.Threading.Tasks

ConfigureContainer() protected method

Creates and configures the container and service locator
protected ConfigureContainer ( ) : void
return void

OnInitializeAsync() protected method

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.
return System.Threading.Tasks.Task

OnLaunchApplicationAsync() protected method

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.
return System.Threading.Tasks.Task