IrcDotNet.IrcClient.OnWhoWasReplyReceived C# (CSharp) Method

OnWhoWasReplyReceived() protected method

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