IrcDotNet.IrcChannelUserEventArgs.IrcChannelUserEventArgs C# (CSharp) Method

IrcChannelUserEventArgs() public method

Initializes a new instance of the IrcChannelUserEventArgs class.
public IrcChannelUserEventArgs ( IrcChannelUser channelUser, string comment = null ) : System.Net.Security
channelUser IrcChannelUser The channel user that the event concerns.
comment string
return System.Net.Security
        public IrcChannelUserEventArgs(IrcChannelUser channelUser, string comment = null)
            : base(comment)
        {
            if (channelUser == null)
                throw new ArgumentNullException("channelUser");

            ChannelUser = channelUser;
        }
IrcChannelUserEventArgs