【实例简介】
C#版支持高并发的HTTP服务器源码,异步处理并发调用,应用于WINFORM程序中,创建自己的HTTP SERVER的首选办法。
【实例截图】
【核心代码】
SimpleHttpServer
└── SimpleHttpServer
├── App.config
├── bin
│ └── Debug
│ ├── ConsoleApplication2.exe
│ ├── ConsoleApplication2.exe.config
│ ├── ConsoleApplication2.pdb
│ ├── ConsoleApplication2.vshost.exe
│ └── ConsoleApplication2.vshost.exe.config
├── ConsoleApplication2.csproj
├── HttpServer
│ ├── HttpClient.cs
│ ├── HttpServer.cs
│ ├── ISocketPool.cs
│ └── MessagePool.cs
├── obj
│ └── Debug
│ ├── ConsoleApplication2.csproj.FileListAbsolute.txt
│ ├── ConsoleApplication2.csprojResolveAssemblyReference.cache
│ ├── ConsoleApplication2.exe
│ ├── ConsoleApplication2.pdb
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── Program.cs
└── Properties
└── AssemblyInfo.cs
7 directories, 21 files