BF2Statistics.MainForm.ASPServer_ClientConnected C# (CSharp) Method

ASPServer_ClientConnected() private method

Update the GUI when a client connects
private ASPServer_ClientConnected ( ) : void
return void
        private void ASPServer_ClientConnected()
        {
            BeginInvoke((Action)delegate
            {
                labelTotalWebRequests.Text = (++Config.TotalASPRequests).ToString();
                labelSessionWebRequests.Text = HttpServer.SessionRequests.ToString();
            });
        }
MainForm