Yaircc.UI.IRCChannel.IRCChannel C# (CSharp) Method

IRCChannel() public method

Initialises a new instance of the IRCChannel class.
public IRCChannel ( IRCMarshal marshal, Connection connection ) : System
marshal IRCMarshal The network marshal for the channel.
connection Yaircc.Net.IRC.Connection The connection the channel operates on.
return System
        public IRCChannel(IRCMarshal marshal, Connection connection)
        {
            this.marshal = marshal;
            this.connection = connection;
            this.users = new List<IRCUser>();
            this.expectingNamesMessage = true;
        }