4 writes to ShouldRenew
CookieSample (2)
Program.cs (2)
21context.ShouldRenew = context.ElapsedTime > (context.Options.ExpireTimeSpan / 4); 27context.ShouldRenew = false;
Microsoft.AspNetCore.Authentication.Cookies (1)
CookieAuthenticationHandler.cs (1)
105ShouldRenew = timeRemaining < timeElapsed,
Microsoft.AspNetCore.Authentication.Test (1)
CookieTests.cs (1)
1114context.ShouldRenew = renew;
2 references to ShouldRenew
Microsoft.AspNetCore.Authentication.Cookies (1)
CookieAuthenticationHandler.cs (1)
109if (eventContext.ShouldRenew)
Microsoft.AspNetCore.Authentication.Test (1)
CookieTests.cs (1)
1113Assert.Equal(expectRenew, context.ShouldRenew);