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