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