コード例 #1
0
ファイル: LiteServer.cs プロジェクト: stanroze/litehttp
 public LiteHttpServer(LiteServerConfiguration config)
 {
     Configuration = config;
     Middleware = new MiddleWareCollection();
 }
コード例 #2
0
ファイル: LiteHttp.cs プロジェクト: stanroze/litehttp
 public static LiteHttpServer Create(LiteServerConfiguration configuration)
 {
     return new LiteHttpServer(configuration);
 }