private static RedisSessionStateItemCollection GetSessionItems(HttpContext context, string id)
        {
            var sharedSessDict = new LocalSharedSessionDictionary();

            return(sharedSessDict.GetSessionItems(new HttpContextWrapper(context), RedisHashIdFromSessionId(new HttpContextWrapper(context), id)));
        }