PushContextEventArgs.cs 451 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Microsoft.Phone.Notification;
  6. namespace WindowsPhone.Recipes.Push.Client
  7. {
  8. public class PushContextEventArgs : EventArgs
  9. {
  10. public HttpNotificationChannel NotificationChannel { get; private set; }
  11. internal PushContextEventArgs(HttpNotificationChannel channel)
  12. {
  13. NotificationChannel = channel;
  14. }
  15. }
  16. }