Stumps.StumpsServer.ServerRequestProcessed C# (CSharp) Method

ServerRequestProcessed() private method

Handles the RequestProcessed event of the server instance.
private ServerRequestProcessed ( object sender, StumpsContextEventArgs e ) : void
sender object The source of the event.
e StumpsContextEventArgs The instance containing the event data.
return void
        private void ServerRequestProcessed(object sender, StumpsContextEventArgs e)
        {
            // Raise the request processed event
            if (this.RequestProcessed != null)
            {
                this.RequestProcessed(this, e);
            }
        }