예제 #1
0
파일: WebAPI.cs 프로젝트: sy1989/SteamKit
 internal Interface(string iface, string apiKey)
 {
     asyncInterface = new AsyncInterface(iface, apiKey);
 }
예제 #2
0
 internal Interface(Uri baseAddress, string iface, string apiKey)
 {
     asyncInterface = new AsyncInterface(baseAddress, iface, apiKey);
 }
예제 #3
0
            internal Interface(Uri baseAddress, string iface, string apiKey)
            {
                Timeout = 1000 * 100; // 100 sec

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

                asyncInterface = new AsyncInterface(iface, apiKey);
            }