IrcDotNet.IrcClient.SendMessageWho C# (CSharp) Method

SendMessageWho() protected method

Sends a request to perform a Who query on users.
protected SendMessageWho ( string mask = null, bool onlyOperators = false ) : void
mask string /// A wildcard expression for matching against channel names; or if none can be found, /// host names, server names, real names, and nick names of users. If the value is , /// all users are matched. ///
onlyOperators bool /// to match only server operators; /// to match all users. ///
return void
        protected void SendMessageWho(string mask = null, bool onlyOperators = false)
        {
            WriteMessage(null, "who", mask, onlyOperators ? "o" : null);
        }
IrcClient