public SoapConnector(string soapEndpoint, Dictionary <string, string> headers) { this.AuthorizeBinding = new AuthorizeBinding(); this.soapEndpoint = soapEndpoint; this.AuthorizeEndpoint = new AuthorizeEndpoint(this.soapEndpoint); this.Headers = headers; }
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); }
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; }