TODO: Update summary.
Inheritance: System.ServiceModel.BasicHttpBinding
Esempio n. 1
0
 public SoapConnector(string soapEndpoint, Dictionary <string, string> headers)
 {
     this.AuthorizeBinding  = new AuthorizeBinding();
     this.soapEndpoint      = soapEndpoint;
     this.AuthorizeEndpoint = new AuthorizeEndpoint(this.soapEndpoint);
     this.Headers           = headers;
 }
Esempio n. 2
0
        public TPConnector(string endpoint, Dictionary <string, string> headers)
        {
            this.AuthorizeBinding  = new AuthorizeBinding();
            this.AuthorizeEndpoint = new AuthorizeEndpoint(endpoint);

            this.Headers = headers;

            restClient = new RestConnector(endpoint, headers);
        }
Esempio n. 3
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;
 }