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

SendMessageQuit() protected méthode

Sends a notification to the server indicating that the client is quitting the network.
protected SendMessageQuit ( string comment = null ) : void
comment string The comment to send the server, or for none.
Résultat void
        protected void SendMessageQuit(string comment = null)
        {
            WriteMessage(null, "quit", comment);
        }
IrcClient