Esempio n. 1
0
 private void OnChatCreated(ChatInfo chatInfo)
 {
     ChatCreated?.Invoke(this, new ChatCreatedEventArgs()
     {
         ChatInfo = chatInfo
     });
 }
Esempio n. 2
0
 private void OnChatCreated(EventArgs e)
 {
     ChatCreated?.Invoke(this, e);
 }
Esempio n. 3
0
 protected virtual void OnChatCreated(ChatEventArgs e)
 {
     ChatCreated?.Invoke(this, e);
 }