public static WindowsPhoneRawNotification WithRaw(this WindowsPhoneRawNotification n, string raw) { n.Raw = raw; return(n); }
public static WindowsPhoneRawNotification WithTag(this WindowsPhoneRawNotification n, object tag) { n.Tag = tag; return(n); }
public static WindowsPhoneRawNotification ForOSVersion(this WindowsPhoneRawNotification n, WindowsPhoneDeviceOSVersion osVersion) { n.OSVersion = osVersion; return(n); }
public static WindowsPhoneRawNotification WithBatchingInterval(this WindowsPhoneRawNotification n, BatchingInterval batchingInterval) { n.NotificationClass = batchingInterval; return(n); }
public static WindowsPhoneRawNotification WithMessageID(this WindowsPhoneRawNotification n, Guid messageID) { n.MessageID = messageID; return(n); }
public static WindowsPhoneRawNotification WithCallbackUri(this WindowsPhoneRawNotification n, Uri callbackUri) { n.CallbackURI = callbackUri.ToString(); return(n); }
public static WindowsPhoneRawNotification ForEndpointUri(this WindowsPhoneRawNotification n, Uri endpointUri) { n.EndPointUrl = endpointUri.ToString(); return(n); }