Microsoft.AspNet.SignalR.PersistentConnection.AppendGroupPrefixes C# (CSharp) Method

AppendGroupPrefixes() private method

private AppendGroupPrefixes ( Microsoft.AspNet.SignalR.HostContext context, string connectionId, string groupsToken ) : IList
context Microsoft.AspNet.SignalR.HostContext
connectionId string
groupsToken string
return IList
        private IList<string> AppendGroupPrefixes(HostContext context, string connectionId, string groupsToken)
        {
            return (from g in OnRejoiningGroups(context.Request, VerifyGroups(connectionId, groupsToken), connectionId)
                    select GroupPrefix + g).ToList();
        }