Hardly.Library.Twitch.TwitchIrcConnection.Join C# (CSharp) Method

Join() private method

private Join ( TwitchChatRoom room ) : void
room TwitchChatRoom
return void
        internal void Join(TwitchChatRoom room)
        {
            ircClient.WriteLine("JOIN #" + room.twitchConnection.channel.user.userName);
            chatRooms.AddLast(room);
        }

Usage Example

コード例 #1
0
        public TwitchChatRoom(TwitchIrcConnection chatConnection,
			 TwitchIrcConnection whisperConnection, SqlTwitchConnection twitchConnection)
        {
            this.chatIrcConnection = chatConnection;
            this.whisperIrcConnection = whisperConnection;
            this.twitchConnection = twitchConnection;
            this.pointManager = new ChannelPointManager(twitchConnection.channel);

            chatConnection.Join(this);

            commandControllers = GetType().InstantiateEachSubclass<TwitchCommandController, TwitchChatRoom>(false, this);
        }
All Usage Examples Of Hardly.Library.Twitch.TwitchIrcConnection::Join