コード例 #1
0
ファイル: HttpServer.cs プロジェクト: kodlar/r-i-m
 public HttpServer(IHttpRequestHandler requestHandler, IClientFactory clientFactory)
     : this(requestHandler, clientFactory, null, null)
 {
     Firewall = new DefaultFirewall(this);
 }
コード例 #2
0
ファイル: HttpServer.cs プロジェクト: kodlar/r-i-m
 public HttpServer(IClientFactory clientFactory, ServerOptions options) : this(null, clientFactory, null, null, null)
 {
     Firewall = new DefaultFirewall(this);
     Options  = options;
 }