Example #1
0
 /// <summary>
 /// Called when the <see cref="ChannelParted"/> event is raise.
 /// </summary>
 /// <param name="e">Data associated with the event.</param>
 protected virtual void OnChannelParted(ChannelUserEventArgs e)
 {
     this.ChannelParted?.Invoke(this, e);
 }
Example #2
0
 /// <summary>
 /// Called when the <see cref="ChannelMessage"/> event is raise.
 /// </summary>
 /// <param name="e">Data associated with the event.</param>
 protected virtual void OnChannelMessage(ChannelUserEventArgs e)
 {
     this.ChannelMessage?.Invoke(this, e);
 }