Fix for pull request #115, added the HttpServer (System.Net.IPAddress, int) constructor

This commit is contained in:
sta
2015-07-08 15:00:38 +09:00
parent c10c9886ef
commit d4fc8da7a8
2 changed files with 35 additions and 1 deletions

View File

@@ -19,7 +19,8 @@ namespace Example3
*/
var httpsv = new HttpServer (4649);
//var httpsv = new HttpServer (5963, true);
//var httpsv = new HttpServer (System.Net.IPAddress.Parse ("127.0.0.1"), 4649, false);
//var httpsv = new HttpServer (System.Net.IPAddress.Parse ("127.0.0.1"), 4649);
//var httpsv = new HttpServer (System.Net.IPAddress.Parse ("127.0.0.1"), 5963, true);
#if DEBUG
// To change the logging level.
httpsv.Log.Level = LogLevel.Trace;