Пример #1
0
		/// <summary>
		/// Initializes a new instance of the HttpServer class
		/// </summary>
		/// <param name="verbose">A flag that indicates the verbosity level the server will use when logging</param>
		public HttpServer(bool verbose)
		{
			_verbose = verbose;
			_connections = new HttpConnectionCollection();			
		}        
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the HttpServer class
 /// </summary>
 /// <param name="verbose">A flag that indicates the verbosity level the server will use when logging</param>
 public HttpServer(bool verbose)
 {
     _verbose     = verbose;
     _connections = new HttpConnectionCollection();
 }