private void GetCommentsByID(string id)
 {
     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.GetCommentsTimelineByIDCompleted += client_GetCommentsByIDCompleted;
     svc.GetCommentsTimelineByIDAsync(id,"xml",ConfigurationSettings.TokenKey, ConfigurationSettings.TokenKeySecret);
 }
        private void GetCommentsByID(string id)
        {
            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.GetCommentsTimelineByIDCompleted += client_GetCommentsByIDCompleted;
            svc.GetCommentsTimelineByIDAsync(id, "xml", ConfigurationSettings.TokenKey, ConfigurationSettings.TokenKeySecret);
        }