Inheritance: ClientBase
Example #1
0
 protected ClientProxy(Client client, string serviceName, int serviceVersion)
 {
     this._client = client;
     this._serviceName = serviceName;
     this._serviceVersion = serviceVersion;
 }
Example #2
0
 public ClientProxy(string appId, string token, object options = null)
 {
     this._client = new Client(appId, token, options);
 }
Example #3
0
 public ClientProxy(object options)
 {
     this._client = new Client(options);
 }
Example #4
0
 public ClientProxy(string appId, string token)
 {
     this._client = new Client(appId, token);
 }