IrcDotNet.IrcClient.SendMessageWhoWas C# (CSharp) Method

SendMessageWhoWas() protected method

Sends a request to perform a WhoWas query on users.
protected SendMessageWhoWas ( IEnumerable nickNames, int entriesCount = -1, string targetServer = null ) : void
nickNames IEnumerable /// A collection of wildcard expressions for matching against the nick names of /// users. ///
entriesCount int The maximum number of (most recent) entries to return.
targetServer string /// The name of the server to which to forward the message, or /// for the current server. ///
return void
        protected void SendMessageWhoWas(IEnumerable<string> nickNames, int entriesCount = -1,
            string targetServer = null)
        {
            WriteMessage(null, "whowas", string.Join(",", nickNames), entriesCount.ToString(), targetServer);
        }
IrcClient