Appverse.Platform.IPhone.IPhonePushNotifications.UnRegisterForRemoteNotifications C# (CSharp) Method

UnRegisterForRemoteNotifications() public method

public UnRegisterForRemoteNotifications ( ) : void
return void
		public override void UnRegisterForRemoteNotifications ()
		{
			UIApplication.SharedApplication.InvokeOnMainThread (delegate {
				UIApplication.SharedApplication.UnregisterForRemoteNotifications();
				PushNotificationsUtils.FireUnityJavascriptEvent ("Appverse.PushNotifications.OnUnRegisterForRemoteNotificationsSuccess", null);
			});

		}