mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-28 23:01:53 +03:00
00f97e41d6
http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/01/14/windows-push-notification-server-side-helper-library.aspx http://create.msdn.com/en-us/education/catalog/article/pnhelp-wp7
26 lines
629 B
C#
26 lines
629 B
C#
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
|
|
}
|
|
}
|