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

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

                asyncInterface = new AsyncInterface(iface, apiKey);
            }