C# 클래스 Cordova.Extension.Commands.LocalNotification

Implementes access to application live tiles http://msdn.microsoft.com/en-us/library/hh202948(v=VS.92).aspx
상속: BaseCommand
파일 보기 프로젝트 열기: eabglobal/forked--cordova-plugin-local-notifications

공개 메소드들

메소드 설명
OnPause ( object sender, DeactivatedEventArgs e ) : void

Occurs when the application is being deactivated.

OnResume ( object sender, Microsoft.Phone.Shell.ActivatedEventArgs e ) : void

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

add ( string jsonArgs ) : void

Sets application live tile

cancel ( string jsonArgs ) : void

Clears the application live tile

cancelAll ( string jsonArgs ) : void

Clears the application live tile

deviceready ( string jsonArgs ) : void

Informs that the device is ready and the deviceready event has been fired

getScheduledIds ( string jsonArgs ) : void

Retrieves a list with all currently pending notifications

hasPermission ( string args ) : void
isScheduled ( string jsonArgs ) : void

Checks wether a notification with an ID is scheduled

promptForPermission ( string args ) : void

비공개 메소드들

메소드 설명
ApplicationState ( ) : String

Retrieves the application state Either "background" or "foreground"

CreateTileData ( Cordova.Extension.Commands.Options options ) : FlipTileData

Creates tile data

FireEvent ( string Event, string Id, string JSON = "" ) : void

Fires the given event.

메소드 상세

OnPause() 공개 메소드

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

OnResume() 공개 메소드

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

add() 공개 메소드

Sets application live tile
public add ( string jsonArgs ) : void
jsonArgs string
리턴 void

cancel() 공개 메소드

Clears the application live tile
public cancel ( string jsonArgs ) : void
jsonArgs string
리턴 void

cancelAll() 공개 메소드

Clears the application live tile
public cancelAll ( string jsonArgs ) : void
jsonArgs string
리턴 void

deviceready() 공개 메소드

Informs that the device is ready and the deviceready event has been fired
public deviceready ( string jsonArgs ) : void
jsonArgs string
리턴 void

getScheduledIds() 공개 메소드

Retrieves a list with all currently pending notifications
public getScheduledIds ( string jsonArgs ) : void
jsonArgs string
리턴 void

hasPermission() 공개 메소드

public hasPermission ( string args ) : void
args string
리턴 void

isScheduled() 공개 메소드

Checks wether a notification with an ID is scheduled
public isScheduled ( string jsonArgs ) : void
jsonArgs string
리턴 void

promptForPermission() 공개 메소드

public promptForPermission ( string args ) : void
args string
리턴 void