IrcDotNet.IrcClient.SendMessageLUsers C# (CSharp) Method

SendMessageLUsers() protected method

Sends a request to get statistics about the size of the IRC network.
protected SendMessageLUsers ( string serverMask = null, string targetServer = null ) : void
serverMask string /// A wildcard expression for matching against the names of servers, or /// to match the entire network. ///
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
return void
        protected void SendMessageLUsers(string serverMask = null, string targetServer = null)
        {
            WriteMessage(null, "lusers", serverMask, targetServer);
        }
IrcClient