Files

19 lines
469 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Phone.Notification;
namespace WindowsPhone.Recipes.Push.Client
{
public class PushContextEventArgs : EventArgs
{
public HttpNotificationChannel NotificationChannel { get; private set; }
internal PushContextEventArgs(HttpNotificationChannel channel)
{
NotificationChannel = channel;
}
}
}