Hardly.Library.Twitch.TwitchApi.GetLiveFollowersJson C# (CSharp) Method

GetLiveFollowersJson() private method

private GetLiveFollowersJson ( TwitchConnection connection, uint limit, uint offset ) : string
connection TwitchConnection
limit uint
offset uint
return string
        string GetLiveFollowersJson(TwitchConnection connection, uint limit, uint offset)
        {
            TwitchUserInChannel[] followers = factory.GetAllUserInChannels(connection.channel);
            return GetJson(connection.bot, limit, offset, "streams/?channel="
                    + TwitchHelpers.GetAllAsCsv(followers));
        }