Exemplo n.º 1
0
 void client_GetNewsModelByIDCompleted(object sender, GetNewsModelByIDCompletedEventArgs e)
 {
     if (e.Error == null)
     {
         if (e.Result != null)
         {
             // this.ViewModel = e.Result;
         }
     }
 }
Exemplo n.º 2
0
        void client_GetNewsModelByIDCompleted(object sender, GetNewsModelByIDCompletedEventArgs e)
        {
            if (e.Error == null)
            {
                if (e.Result != null)
                {
                    publicWS.GetContentAsync(e.Result.NEWSID);

                    CacheNews = e.Result;
                    // CacheList.Add(e.Result.NEWSID, e.Result);
                }
            }
        }
Exemplo n.º 3
0
        void client_GetNewsModelByIDCompleted(object sender, GetNewsModelByIDCompletedEventArgs e)
        {
            if (e.Error == null)
            {
                if (e.Result != null)
                {
                    publicWS.GetContentAsync(e.Result.NEWSID);

                    CacheNews = e.Result;
                    // CacheList.Add(e.Result.NEWSID, e.Result);
                }
            }
        }
Exemplo n.º 4
0
 void client_GetNewsModelByIDCompleted(object sender, GetNewsModelByIDCompletedEventArgs e)
 {
     if (e.Error == null)
     {
         if (e.Result != null)
         {
             // this.ViewModel = e.Result;
         }
     }
 }