Exemplo n.º 1
0
 protected virtual void OnWhoisRecieved(WhoisRecievedEventArgs e)
 {
     EventHandler<WhoisRecievedEventArgs> handler = WhoisRecieved;
     if (handler != null)
         handler(this, e);
 }
Exemplo n.º 2
0
 private void Client_WhoisRecieved(object sender, WhoisRecievedEventArgs e)
 {
     network.StatusBuffer.AppendRaw(e.User + " :" + e.Whois);
 }