IrcDotNet.IrcClient.SendMessageWallops C# (CSharp) Method

SendMessageWallops() protected method

Sends a message to all connected users that have the 'w' mode set.
protected SendMessageWallops ( string text ) : void
text string The text of the message to send.
return void
        protected void SendMessageWallops(string text)
        {
            WriteMessage(null, "wallops", text);
        }
IrcClient