Example #1
0
 internal MessagingQueryHelper(ZuneServiceQuery query)
     : base(query)
 {
     this._endPoint           = EServiceEndpointId.SEID_Messaging;
     query.CachePolicy        = HttpRequestCachePolicy.BypassCache;
     query.PassportTicketType = EPassportPolicyId.MBI_SSL;
 }
Example #2
0
 internal CatalogServiceQueryHelper(ZuneServiceQuery query)
     : base(query)
 {
     this._endPoint = EServiceEndpointId.SEID_RootCatalog;
     if (string.IsNullOrEmpty(ClientConfiguration.Service.TimeTravel) || !ZuneApplication.Service.IsSignedIn())
     {
         return;
     }
     query.PassportTicketType = EPassportPolicyId.MBI;
 }
Example #3
0
 public static string GetEndPointUri(EServiceEndpointId eServiceEndpointId)
 {
     return("catalog.zune.net/service?id=" + eServiceEndpointId.ToString());
 }