11 references to SessionStore
Microsoft.AspNetCore.Authentication.Cookies (11)
CookieAuthenticationHandler.cs (11)
165if (Options.SessionStore != null)
173ticket = await Options.SessionStore.RetrieveAsync(claim.Value, Context, Context.RequestAborted);
186if (Options.SessionStore != null)
188await Options.SessionStore.RemoveAsync(_sessionKey!, Context, Context.RequestAborted);
263if (Options.SessionStore != null && _sessionKey != null)
265await Options.SessionStore.RenewAsync(_sessionKey, ticket, Context, Context.RequestAborted);
338if (Options.SessionStore != null)
343await Options.SessionStore.RenewAsync(_sessionKey, ticket, Context, Context.RequestAborted);
347_sessionKey = await Options.SessionStore.StoreAsync(ticket, Context, Context.RequestAborted);
391if (Options.SessionStore != null && _sessionKey != null)
393await Options.SessionStore.RemoveAsync(_sessionKey, Context, Context.RequestAborted);