IrcDotNet.IrcClient.OnNetworkInformationReceived C# (CSharp) Method

OnNetworkInformationReceived() protected method

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