Modified a bit for Program.cs

This commit is contained in:
sta 2015-07-17 16:58:42 +09:00
parent 9360a6d99a
commit 38669444b4

View File

@ -14,13 +14,15 @@ namespace Example3
{
/* Create a new instance of the HttpServer class.
*
* If you would like to provide the secure connection, you should create the instance
* with the 'secure' parameter set to true.
* If you would like to provide the secure connection, you should create the instance with
* the 'secure' parameter set to true, or the https scheme HTTP URL.
*/
var httpsv = new HttpServer (4649);
//var httpsv = new HttpServer (5963, true);
//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);
//var httpsv = new HttpServer ("http://localhost:4649");
//var httpsv = new HttpServer ("https://localhost:5963");
#if DEBUG
// To change the logging level.
httpsv.Log.Level = LogLevel.Trace;