IrcDotNet.IrcClient.OnWhoIsReplyReceived C# (CSharp) Method

OnWhoIsReplyReceived() protected method

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