IrcDotNet.IrcClient.SendMessageWallops C# (CSharp) Méthode

SendMessageWallops() protected méthode

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.
Résultat void
        protected void SendMessageWallops(string text)
        {
            WriteMessage(null, "wallops", text);
        }
IrcClient