public static void handleNotification(object sender, EventArgs e)
        {
            PushEventArgs eventArgs = (PushEventArgs)e;

            Console.WriteLine("Notification received. Payload is " + eventArgs.Payload +
                              ". URL is " + eventArgs.Url);
            HomePage._this.ShowAlert("Notified", eventArgs.Alert, "OK");
        }
Пример #2
0
 static void ReceiveDelegate(PushEventArgs args)
 {
 }