private void ReplyCommentByID(string statusid, string commentcontent,string commentid)
 {
     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.Status_ReplyCommentCompleted += client_ReplyCommentByIDCompleted;
     svc.Status_ReplyCommentAsync(statusid, commentcontent, commentid, "xml", ConfigurationSettings.TokenKey, ConfigurationSettings.TokenKeySecret);
 }
        private void ReplyCommentByID(string statusid, string commentcontent, string commentid)
        {
            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.Status_ReplyCommentCompleted += client_ReplyCommentByIDCompleted;
            svc.Status_ReplyCommentAsync(statusid, commentcontent, commentid, "xml", ConfigurationSettings.TokenKey, ConfigurationSettings.TokenKeySecret);
        }