3 writes to _sessionKey
Microsoft.AspNetCore.Authentication.Cookies (3)
9 references to _sessionKey
Microsoft.AspNetCore.Authentication.Cookies (9)
CookieAuthenticationHandler.cs (9)
187await Options.SessionStore.RemoveAsync(_sessionKey!, Context, Context.RequestAborted);
262if (Options.SessionStore != null && _sessionKey != null)
264await Options.SessionStore.RenewAsync(_sessionKey, ticket, Context, Context.RequestAborted);
267new[] { new Claim(SessionIdClaim, _sessionKey, ClaimValueTypes.String, Options.ClaimsIssuer) },
339if (_sessionKey != null)
342await Options.SessionStore.RenewAsync(_sessionKey, ticket, Context, Context.RequestAborted);
351new[] { new Claim(SessionIdClaim, _sessionKey, ClaimValueTypes.String, Options.ClaimsIssuer) },
390if (Options.SessionStore != null && _sessionKey != null)
392await Options.SessionStore.RemoveAsync(_sessionKey, Context, Context.RequestAborted);