BF2Statistics.Web.HttpServer.CreateHttpListener C# (CSharp) Method

CreateHttpListener() private static method

Creates the HttpListener object, and configures the prefixes
private static CreateHttpListener ( ) : void
return void
        private static void CreateHttpListener()
        {
            Listener = new HttpListener();
            Listener.Prefixes.Add("http://*/ASP/");
            Listener.Prefixes.Add("http://*/bf2stats/");
        }