Exemplo n.º 1
0
        public void SubscribeForPushNotifications()
        {
            TokenEventArgs args = new TokenEventArgs();

            args.Token = PushToken;
            if (OnPushTokenReceived != null)
            {
                OnPushTokenReceived(this, args);
            }
        }
Exemplo n.º 2
0
        private void internalPushTokenReceived(object sender, string token)
        {
            TokenEventArgs args = new TokenEventArgs();

            args.Token = token;

            if (OnPushTokenReceived != null)
            {
                OnPushTokenReceived(this, args);
            }
        }
Exemplo n.º 3
0
 void TokenReceived(object sender, PushwooshPlugin.TokenEventArgs events)
 {
     RegisteredForPushNotifications(events.Token);
 }