Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 281 Bytes

README.md

File metadata and controls

7 lines (7 loc) · 281 Bytes

MHttpServer

使用方法:

 MHttpServer.Listen listen = new MHttpServer.Listen(8088);
 ContainerBuilder builder = new ContainerBuilder();
 builder.RegisterType<TestService>().PropertiesAutowired();
 listen.InitController(builder);
 listen.start();