TODO: Update summary.
Inheritance: System.ServiceModel.BasicHttpBinding
コード例 #1
0
 public SoapConector(string soapEndpoint, Dictionary <string, string> headers)
 {
     this.AuthorizeBinding   = new AuthorizeBinding();
     this.OperationsBinding  = new OperationsBinding();
     this.soapEndpoint       = soapEndpoint;
     this.AuthorizeEndpoint  = new AuthorizeEndpoint(this.soapEndpoint);
     this.OperationsEndpoint = new OperationsEndpoint(this.soapEndpoint);
     this.Headers            = headers;
 }
コード例 #2
0
ファイル: SoapConector.cs プロジェクト: TodoPago/SDK-.NET
 public SoapConector(string soapEndpoint, Dictionary<string, string> headers)
 {
     this.AuthorizeBinding = new AuthorizeBinding();
     this.OperationsBinding = new OperationsBinding();
     this.soapEndpoint = soapEndpoint;
     this.AuthorizeEndpoint = new AuthorizeEndpoint(this.soapEndpoint);
     this.OperationsEndpoint = new OperationsEndpoint(this.soapEndpoint);
     this.Headers = headers;
 }