protected ClientProxy(Client client, string serviceName, int serviceVersion) { this._client = client; this._serviceName = serviceName; this._serviceVersion = serviceVersion; }
public ClientProxy(string appId, string token, object options = null) { this._client = new Client(appId, token, options); }
public ClientProxy(object options) { this._client = new Client(options); }
public ClientProxy(string appId, string token) { this._client = new Client(appId, token); }