Example #1
0
 private HttpContractedClient(Type contractType, HttpContractedClientOptions options)
 {
     this.ContractType     = contractType;
     this.Channel          = options.Channel;
     this.RequestSpecifier = options.RequestSpecifier;
     this.BaseAddress      = Channel.BaseAddress;
 }
Example #2
0
 public HttpContractedClientOptions(IHttpRequestSpecifier RequestSpecifier, IHttpChannel Channel)
 {
     this.RequestSpecifier = RequestSpecifier;
     this.Channel          = Channel;
 }