mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 07:01:38 +03:00
push notification helper library
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
This commit is contained in:
+25
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user