IrcDotNet.IrcClient.SendMessagePart C# (CSharp) Method

SendMessagePart() protected method

Sends a request to leave the specified channels.
protected SendMessagePart ( IEnumerable channels, string comment = null ) : void
channels IEnumerable A collection of the names of the channels to leave.
comment string The comment to send the server, or for none.
return void
        protected void SendMessagePart(IEnumerable<string> channels, string comment = null)
        {
            WriteMessage(null, "part", string.Join(",", channels), comment);
        }
IrcClient