CheevoService.HTTPServer.Start C# (CSharp) 메소드

Start() 공개 메소드

public Start ( ) : void
리턴 void
        public void Start()
        {
            httpListener.Start();

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