CheevoService.HTTPServer.Start C# (CSharp) Method

Start() public method

public Start ( ) : void
return void
        public void Start()
        {
            httpListener.Start();

            while (httpListener.IsListening)
            {
                HttpListenerContext context = httpListener.GetContext();
                Thread processResponse = new Thread(OnNewResponse);
                processResponse.Start(context);
            }
        }