Method | Description | |
---|---|---|
AbstractPushNotifications ( ) : System | ||
DidRegisterUserNotificationSettings ( UIApplication application, UIUserNotificationSettings notificationSettings ) : void | ||
FailedToRegisterForRemoteNotifications ( UIApplication application, NSError error ) : void | ||
FinishedLaunching ( UIApplication application, NSDictionary launchOptions ) : void | ||
OnActivated ( UIApplication application ) : void | ||
ReceivedRemoteNotification ( UIApplication application, NSDictionary userInfo ) : void | ||
RegisterForRemoteNotifications ( string senderId, RemoteNotificationType types ) : void | ||
RegisteredForRemoteNotifications ( UIApplication application, NSData deviceToken ) : void | ||
UnRegisterForRemoteNotifications ( ) : void | ||
WebViewLoadingFinished ( UIApplicationState applicationState, NSDictionary options ) : void | ||
processNotification ( NSDictionary options, bool fromFinishedLaunching, UIApplicationState applicationState ) : void |
Processes the notification.
|
Method | Description | |
---|---|---|
PlayNotificationSound ( String soundName ) : void | ||
ProcessRemoteNotification ( NSDictionary options, bool fromFinishedLaunching, UIApplicationState applicationState ) : void | ||
ShowNotificationAlert ( string title, string message ) : void |
Manually shows a notification alert.
|
|
UpdateApplicationIconBadgeNumber ( int badge ) : void |
public AbstractPushNotifications ( ) : System | ||
return | System |
public DidRegisterUserNotificationSettings ( UIApplication application, UIUserNotificationSettings notificationSettings ) : void | ||
application | UIApplication | |
notificationSettings | UIUserNotificationSettings | |
return | void |
public FailedToRegisterForRemoteNotifications ( UIApplication application, NSError error ) : void | ||
application | UIApplication | |
error | NSError | |
return | void |
public FinishedLaunching ( UIApplication application, NSDictionary launchOptions ) : void | ||
application | UIApplication | |
launchOptions | NSDictionary | |
return | void |
public OnActivated ( UIApplication application ) : void | ||
application | UIApplication | |
return | void |
public ReceivedRemoteNotification ( UIApplication application, NSDictionary userInfo ) : void | ||
application | UIApplication | |
userInfo | NSDictionary | |
return | void |
public abstract RegisterForRemoteNotifications ( string senderId, RemoteNotificationType types ) : void | ||
senderId | string | |
types | RemoteNotificationType | |
return | void |
public RegisteredForRemoteNotifications ( UIApplication application, NSData deviceToken ) : void | ||
application | UIApplication | |
deviceToken | NSData | |
return | void |
public abstract UnRegisterForRemoteNotifications ( ) : void | ||
return | void |
public WebViewLoadingFinished ( UIApplicationState applicationState, NSDictionary options ) : void | ||
applicationState | UIApplicationState | |
options | NSDictionary | |
return | void |
public static processNotification ( NSDictionary options, bool fromFinishedLaunching, UIApplicationState applicationState ) : void | ||
options | NSDictionary | Options. |
fromFinishedLaunching | bool | True if this method comes from the 'FinishedLaunching' delegated method |
applicationState | UIApplicationState | The application state that received the remote notification |
return | void |