public WebServiceRemotingEngine(IFormatter formatter, string url, string domainKey, IWebServiceCompressor compressor) : base(formatter) { this.url = url; this.domainKey = domainKey; this.compressor = compressor; }
public WebServiceRemotingEngine(IFormatter formatter, string url, string domainKey, IWebServiceCompressor compressor, bool useCompression) : base(formatter) { this.url = url; this.domainKey = domainKey; this.compressor = compressor; this.useCompression = useCompression; }
public WebServiceRemotingEngine(IFormatter formatter, string url, string domainKey) : base(formatter) { this.url = url; this.domainKey = domainKey; }
public WebServiceRemotingEngine(IFormatter formatter, string url) : base(formatter) { this.url = url; }
public WebServiceRemotingEngine(IFormatter formatter) : base(formatter) { }