WebSocketSharp.Net.HttpListener.HttpListener C# (CSharp) 메소드

HttpListener() 공개 메소드

Initializes a new instance of the HttpListener class.
public HttpListener ( ) : System
리턴 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;
        }