public ApiObject(ServerBridge.JsonData Raw, ApiClient Api)
 {
     this.Raw = Raw;
     this.Api = Api;
     Bridge   = Api.GetServerBridge();
 }
Exemple #2
0
 public ApiClient(string ApiKey, string BaseUrl)
 {
     Bridge = new ServerBridge(ApiKey, BaseUrl);
 }
Exemple #3
0
 // Testing purposes
 public void SetServerBridge(ServerBridge Bridge)
 {
     this.Bridge = Bridge;
 }
Exemple #4
0
 public ApiClient(string ApiKey)
 {
     Bridge = new ServerBridge(ApiKey);
 }
Exemple #5
0
 public ApiClient(string ApiKey, System.Action onClomplete)
 {
     Bridge = new ServerBridge(ApiKey);
 }
 public ApiObject(Dictionary <string, object> Raw, ApiClient Api)
 {
     this.Raw = Raw;
     this.Api = Api;
     Bridge   = Api.GetServerBridge();
 }