Example #1
0
        private void GetCommentTimeline()
        {
            CustomBinding   binding = new CustomBinding(new BinaryMessageEncodingBindingElement(), new HttpTransportBindingElement());
            EndpointAddress address = new EndpointAddress(new Uri(Application.Current.Host.Source, "/SinaDesktop.Web/SinaService.svc"));

            SinaDataService.DataServiceClient svc = new SinaDataService.DataServiceClient(binding, address);
            svc.GetCommentTimelineCompleted += client_GetCommentTimelineCompleted;
            svc.GetCommentTimelineAsync("xml", ConfigurationSettings.TokenKey, ConfigurationSettings.TokenKeySecret);
        }
Example #2
0
 private void GetCommentTimeline()
 {
     CustomBinding binding = new CustomBinding(new BinaryMessageEncodingBindingElement(), new HttpTransportBindingElement());
     EndpointAddress address = new EndpointAddress(new Uri(Application.Current.Host.Source, "/SinaDesktop.Web/SinaService.svc"));
     SinaDataService.DataServiceClient svc = new SinaDataService.DataServiceClient(binding, address);
     svc.GetCommentTimelineCompleted += client_GetCommentTimelineCompleted;
     svc.GetCommentTimelineAsync("xml", ConfigurationSettings.TokenKey, ConfigurationSettings.TokenKeySecret);
 }