Exemple #1
0
        public void ConnectToRuntimeApi(string runtimeApiUrl, string apiKey)
        {
            if (_mode != Mode.RUNTIME)
            {
                return;
            }

            if (apiKey == null)
            {
                apiKey = String.Empty;
            }
            this.runtimeClient = RuntimeAPIClientFactory.NewClient(runtimeApiUrl, apiKey);
        }
Exemple #2
0
 public void ConnectToRuntimeApi(string runtimeApiUrl, string apiKey)
 {
     this.runtimeClient = RuntimeAPIClientFactory.NewClient(runtimeApiUrl, apiKey);
 }