Files
myfriendsaround/main/Libs/PushRecipe_WP7_SL/Source/WindowsPhone.Recipes.Push.Client/PushContextErrorEventArgs.cs
T

18 lines
396 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WindowsPhone.Recipes.Push.Client
{
public class PushContextErrorEventArgs : EventArgs
{
public Exception Exception { get; private set; }
public PushContextErrorEventArgs(Exception exception)
{
Exception = exception;
}
}
}