Example #1
0
        private void VerifyCredentialsLogin(string format)
        {
            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.VerifyCredentialsCompleted += client_VerifyCredentialsLoginCompleted;
            svc.VerifyCredentialsAsync(format, ConfigurationSettings.TokenKey, ConfigurationSettings.TokenKeySecret);
        }
Example #2
0
 private void VerifyCredentialsLogin(string format)
 {
     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.VerifyCredentialsCompleted += client_VerifyCredentialsLoginCompleted;
     svc.VerifyCredentialsAsync(format, ConfigurationSettings.TokenKey, ConfigurationSettings.TokenKeySecret);
 }