WebSocketSharp.Net.HttpListener.HttpListener C# (CSharp) Method

HttpListener() public method

Initializes a new instance of the HttpListener class.
public HttpListener ( ) : System
return System
        public HttpListener()
        {
            prefixes     = new HttpListenerPrefixCollection (this);
            registry     = new Dictionary<HttpListenerContext, HttpListenerContext> ();
            connections  = new Dictionary<HttpConnection, HttpConnection> ();
            ctx_queue    = new List<HttpListenerContext> ();
            wait_queue   = new List<ListenerAsyncResult> ();
            auth_schemes = AuthenticationSchemes.Anonymous;
        }