Beispiel #1
0
 void OnJoinHandler(object sender, Irc.JoinEventArgs e)
 {
     if (OnJoin != null)
     {
         OnJoin((Network)sender, e);
     }
 }
Beispiel #2
0
 protected internal static void Answer(Network n, Irc.JoinEventArgs e, string s)
 {
     n.SendMessage(Abbot.Irc.SendType.Message, e.Data.Channel, s);
 }