Example #1
0
 public UserJoinEventArgs(IrcUser User, IrcChannel Channel)
 {
     this.User    = User;
     this.Channel = Channel;
 }
Example #2
0
 public UserPartEventArgs(IrcUser User, IrcChannel Channel, string Reason)
 {
     this.User    = User;
     this.Channel = Channel;
     this.Reason  = Reason;
 }
 public ChannelListEventArgs(IrcChannel channel)
 {
     this.Channel = channel;
 }
 public UserPartEventArgs(IrcUser User, IrcChannel Channel, string Reason)
 {
     this.User = User;
     this.Channel = Channel;
     this.Reason = Reason;
 }
Example #5
0
 public ChannelListEventArgs(IrcChannel channel)
 {
     this.Channel = channel;
 }