Exemplo n.º 1
0
 private static void OnUserJoinedChannel(object sender, ChannelUserEventArgs args)
 {
     Utils.SendNotice(String.Format(Data.MessageJoinChannel, args.User.Nick), args.User.Nick);
 }
Exemplo n.º 2
0
 protected internal virtual void OnUserPartedChannel(ChannelUserEventArgs e)
 {
     if (UserPartedChannel != null) UserPartedChannel(this, e);
 }
Exemplo n.º 3
0
 internal void OnUserJoinedChannel(ChannelUserEventArgs e)
 {
     if (UserJoinedChannel != null) UserJoinedChannel(this, e);
 }