Ejemplo n.º 1
0
 protected virtual void OnNamesRecieved(NamesRecievedEventArgs e)
 {
     EventHandler<NamesRecievedEventArgs> handler = NamesRecieved;
     if (handler != null)
         handler(this, e);
 }
Ejemplo n.º 2
0
 private void Client_NamesRecieved(object sender, NamesRecievedEventArgs e)
 {
     checkChannel(e.Channel);
     channels[e.Channel].SetNamesList(e.List.Trim().Split(' '));
 }