Exemple #1
0
 internal Interface(string iface, string apiKey)
 {
     asyncInterface = new AsyncInterface(iface, apiKey);
 }
Exemple #2
0
 internal Interface(Uri baseAddress, string iface, string apiKey)
 {
     asyncInterface = new AsyncInterface(baseAddress, iface, apiKey);
 }
Exemple #3
0
            internal Interface(Uri baseAddress, string iface, string apiKey)
            {
                Timeout = 1000 * 100; // 100 sec

                asyncInterface = new AsyncInterface(baseAddress, iface, apiKey);
            }
Exemple #4
0
 internal Interface(HttpClient httpClient, string iface, string apiKey)
 {
     asyncInterface = new AsyncInterface(httpClient, iface, apiKey);
 }
Exemple #5
0
            internal Interface(string iface, string apiKey)
            {
                Timeout = 1000 * 100; // 100 sec

                asyncInterface = new AsyncInterface(iface, apiKey);
            }