Exemplo n.º 1
0
 protected virtual void OnParticipantDisonnected(ParticipantEventArgs e)
 {
     if (MessageReceived != null)
     {
         ParticipantDisconnected(this, e);
     }
 }
Exemplo n.º 2
0
 public void DeleteFromParticipantList(object sender, ParticipantEventArgs e)
 {
     new Action <string>(DeleteFromParticipantInThread).BeginInvoke(e.NickNameOfParticiapant, null, null);
 }
Exemplo n.º 3
0
 public void AddToParticipantList(object sender, ParticipantEventArgs e)
 {
     new Action <string>(AddToWindowOfParticipantInThread).BeginInvoke(e.NickNameOfParticiapant, null, null);
 }