5 writes to AllowRefresh
Microsoft.AspNetCore.Authentication.Core.Test (4)
AuthenticationPropertiesTests.cs (4)
227props.AllowRefresh = true; 231props.AllowRefresh = false; 310AllowRefresh = true, 366AllowRefresh = true,
Microsoft.AspNetCore.Authentication.WsFederation (1)
WsFederationHandler.cs (1)
330properties.AllowRefresh = false;
7 references to AllowRefresh
Microsoft.AspNetCore.Authentication.Cookies (1)
CookieAuthenticationHandler.cs (1)
97var allowRefresh = ticket.Properties.AllowRefresh ?? true;
Microsoft.AspNetCore.Authentication.Core.Test (6)
AuthenticationPropertiesTests.cs (6)
225Assert.Null(props.AllowRefresh); 228Assert.True(props.AllowRefresh); 232Assert.False(props.AllowRefresh); 236Assert.Null(props.AllowRefresh); 332Assert.Equal(props.AllowRefresh, deserialized!.AllowRefresh);