IrcDotNet.IrcClient.SendMessageList C# (CSharp) Method

SendMessageList() protected method

Sends a request to list channels and their topics.
protected SendMessageList ( IEnumerable channels = null, string targetServer = null ) : void
channels IEnumerable /// A collection of the names of channels to list, or for all /// channels. ///
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
return void
        protected void SendMessageList(IEnumerable<string> channels = null, string targetServer = null)
        {
            WriteMessage(null, "list", channels == null ? null : string.Join(",", channels), targetServer);
        }
IrcClient