示例#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);
 }