void connection_Sent(object sender, RawMessageEventArgs e) { throw new NotImplementedException(); }
protected internal virtual void OnSent(RawMessageEventArgs e) { if (this.Sent != null) { this.Sent(this, e); } }
void connection_Recieved(object sender, RawMessageEventArgs e) { IMessageState state = MessageHandlerFactory.Resolve(e.Message); state.Handler.Execute(state.IrcMessage, this); }
protected internal virtual void OnRecieved(RawMessageEventArgs e) { if (this.Recieved != null) { this.Recieved(this, e); } }