Yaircc.UI.IRCChannel.IRCChannel C# (CSharp) Метод

IRCChannel() публичный Метод

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.
Результат System
        public IRCChannel(IRCMarshal marshal, Connection connection)
        {
            this.marshal = marshal;
            this.connection = connection;
            this.users = new List<IRCUser>();
            this.expectingNamesMessage = true;
        }