2011-03-28 21:22:11 +03:00
parent a4c09735f0
commit 00f97e41d6
130 changed files with 13440 additions and 0 deletions
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WindowsPhone.Recipes.Push.Messasges
{
/// <summary>
/// Windows Phone Device connection status.
/// </summary>
public enum DeviceConnectionStatus
{
/// <value>The request is not applicable.</value>
NotApplicable,
/// <value>The device is connected.</value>
Connected,
/// <value>The device is temporarily disconnected.</value>
TempDisconnected,
/// <value>The device is in an inactive state.</value>
Inactive
}
}