IrcDotNet.IrcClient.SendMessageStats C# (CSharp) Method

SendMessageStats() protected method

Sends a request to query statistics for the server.
protected SendMessageStats ( string query = null, string targetServer = null ) : void
query string The query to send the server.
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
return void
        protected void SendMessageStats(string query = null, string targetServer = null)
        {
            WriteMessage(null, "stats", query, targetServer);
        }
IrcClient