コード例 #1
0
 public HttpUrl(HttpUrlDescriptor descriptor, string baseUrl)
 {
     Descriptor = descriptor;
     BaseUrl    = baseUrl;
     Path       = new HttpUrlPath();
     Query      = new HttpUrlQuery();
 }
コード例 #2
0
ファイル: HttpUrl.cs プロジェクト: kswoll/sexy-http
 public HttpUrl(HttpUrlDescriptor descriptor, string baseUrl)
 {
     this.descriptor = descriptor;
     BaseUrl = baseUrl;
     Path = new HttpUrlPath();
     Query = new HttpUrlQuery();
 }