コード例 #1
0
ファイル: Client.cs プロジェクト: MrCloudFox/Chat
 protected virtual void OnParticipantDisonnected(ParticipantEventArgs e)
 {
     if (MessageReceived != null)
     {
         ParticipantDisconnected(this, e);
     }
 }
コード例 #2
0
 public void DeleteFromParticipantList(object sender, ParticipantEventArgs e)
 {
     new Action <string>(DeleteFromParticipantInThread).BeginInvoke(e.NickNameOfParticiapant, null, null);
 }
コード例 #3
0
 public void AddToParticipantList(object sender, ParticipantEventArgs e)
 {
     new Action <string>(AddToWindowOfParticipantInThread).BeginInvoke(e.NickNameOfParticiapant, null, null);
 }