IrcDotNet.IrcClient.OnWhoReplyReceived C# (CSharp) Method

OnWhoReplyReceived() protected method

Raises the WhoReplyReceived event.
protected OnWhoReplyReceived ( IrcNameEventArgs e ) : void
e IrcNameEventArgs The instance containing the event data.
return void
        protected virtual void OnWhoReplyReceived(IrcNameEventArgs e)
        {
            var handler = WhoReplyReceived;
            if (handler != null)
                handler(this, e);
        }
IrcClient