IrcDotNet.IrcClient.SendMessageQuit C# (CSharp) Method

SendMessageQuit() protected method

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.
return void
        protected void SendMessageQuit(string comment = null)
        {
            WriteMessage(null, "quit", comment);
        }
IrcClient