C# Class Cordova.Extension.Commands.BackgroundMode

Inheritance: WPCordovaClassLib.Cordova.Commands.BaseCommand
Mostrar archivo Open project: katzer/cordova-plugin-background-mode

Private Properties

Property Type Description
Activate void
Deactivate void
FireEvent void
IsServiceAvailable bool
geolocator_PositionChanged void

Public Methods

Method Description
OnPause ( object sender, DeactivatedEventArgs e ) : void

Occurs when the application is being deactivated.

OnResume ( object sender, ActivatedEventArgs e ) : void

Occurs when the application is being made active after previously being put into a dormant state or tombstoned.

disable ( string args ) : void
enable ( string args ) : void

Private Methods

Method Description
Activate ( ) : void
Deactivate ( ) : void
FireEvent ( Event Event, string Param ) : void

Fires the given event.

IsServiceAvailable ( ) : bool
geolocator_PositionChanged ( Geolocator sender, PositionChangedEventArgs args ) : void

Method Details

OnPause() public method

Occurs when the application is being deactivated.
public OnPause ( object sender, DeactivatedEventArgs e ) : void
sender object
e DeactivatedEventArgs
return void

OnResume() public method

Occurs when the application is being made active after previously being put into a dormant state or tombstoned.
public OnResume ( object sender, ActivatedEventArgs e ) : void
sender object
e ActivatedEventArgs
return void

disable() public method

public disable ( string args ) : void
args string
return void

enable() public method

public enable ( string args ) : void
args string
return void