IrcDotNet.IrcClient.OnRawMessageSent C# (CSharp) Method

OnRawMessageSent() protected method

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