3 writes to _sessionKey
Microsoft.AspNetCore.Authentication.Cookies (3)
9 references to _sessionKey
Microsoft.AspNetCore.Authentication.Cookies (9)
CookieAuthenticationHandler.cs (9)
188await Options.SessionStore.RemoveAsync(_sessionKey!, Context, Context.RequestAborted);
263if (Options.SessionStore != null && _sessionKey != null)
265await Options.SessionStore.RenewAsync(_sessionKey, ticket, Context, Context.RequestAborted);
268new[] { new Claim(SessionIdClaim, _sessionKey, ClaimValueTypes.String, Options.ClaimsIssuer) },
340if (_sessionKey != null)
343await Options.SessionStore.RenewAsync(_sessionKey, ticket, Context, Context.RequestAborted);
352new[] { new Claim(SessionIdClaim, _sessionKey, ClaimValueTypes.String, Options.ClaimsIssuer) },
391if (Options.SessionStore != null && _sessionKey != null)
393await Options.SessionStore.RemoveAsync(_sessionKey, Context, Context.RequestAborted);