protected virtual void OnUserLeft(UserChannelEventArgs e) { if (UserLeft != null) { UserLeft(this, e); } }
protected virtual void OnUserJoined(UserChannelEventArgs e) { if (UserJoined != null) { UserJoined(this, e); } }
protected virtual void OnUserLeft(UserChannelEventArgs e) { if (UserLeft != null) UserLeft(this, e); }
protected virtual void OnUserJoined(UserChannelEventArgs e) { if (UserJoined != null) UserJoined(this, e); }