private static void OnRawPushReceived(object sender, RawPushReceivedEventArgs args)
 {
     using (var reader = new StreamReader(args.Notification.Body)) {
         string message = reader.ReadToEnd();
         Debug.WriteLine("Received a raw push notification with message {0} and we can action on it in the app.", message);
     }
 }
 private static void OnRawPushReceived(object sender, RawPushReceivedEventArgs args) {
   using (var reader = new StreamReader(args.Notification.Body)) {
     string message = reader.ReadToEnd();
     Debug.WriteLine("Received a raw push notification with message {0} and we can action on it in the app.", message);
   }
 }