コード例 #1
0
ファイル: HttpWebClientImpl.cs プロジェクト: Coocoolaka/Rest
 public HttpWebClientImpl(
     Worker worker,
     Dictionary<string, string> headers,
     long timeout = DEFAULT_TIMEOUT)
 {
     _networkWorker = worker;
     _headers = headers;
     _timeout = timeout;
 }
コード例 #2
0
ファイル: HttpWebClientImpl.cs プロジェクト: Coocoolaka/Rest
 public HttpWebClientImpl(Worker worker)
     : this(worker, new Dictionary<string, string>())
 {
 }