Ejemplo n.º 1
0
 public ChannelKickEventArgs(IrcUser sender, IrcChannel channel, IrcChannelUser target, string reason)
 {
     this.Sender  = sender;
     this.Channel = channel;
     this.Target  = target;
     this.Reason  = reason;
 }
Ejemplo n.º 2
0
 public ChannelStatusChangedEventArgs(IrcUser sender, IrcChannel channel, bool direction, char mode, IrcChannelUser target)
 {
     this.Sender    = sender;
     this.Channel   = channel;
     this.Direction = direction;
     this.Mode      = mode;
     this.Target    = target;
 }