예제 #1
0
파일: Program.cs 프로젝트: Citidel/edgebot
 private static void OnUserJoinedChannel(object sender, ChannelUserEventArgs args)
 {
     Utils.SendNotice(String.Format(Data.MessageJoinChannel, args.User.Nick), args.User.Nick);
 }
예제 #2
0
 protected internal virtual void OnUserPartedChannel(ChannelUserEventArgs e)
 {
     if (UserPartedChannel != null) UserPartedChannel(this, e);
 }
예제 #3
0
 internal void OnUserJoinedChannel(ChannelUserEventArgs e)
 {
     if (UserJoinedChannel != null) UserJoinedChannel(this, e);
 }