7 writes to IssuedUtc
Microsoft.AspNetCore.Authentication.Cookies (2)
CookieAuthenticationHandler.cs (2)
254properties.IssuedUtc = _refreshIssuedUtc; 319signInContext.Properties.IssuedUtc = issuedUtc;
Microsoft.AspNetCore.Authentication.JwtBearer (1)
JwtBearerHandler.cs (1)
160tokenValidatedContext.Properties.IssuedUtc = GetSafeDateTime(validatedToken.ValidFrom);
Microsoft.AspNetCore.Authentication.OpenIdConnect (2)
OpenIdConnectHandler.cs (2)
1428properties.IssuedUtc = issued; 1483properties.IssuedUtc = issued;
Microsoft.AspNetCore.Authentication.WsFederation (1)
WsFederationHandler.cs (1)
323properties.IssuedUtc = issued.ToUniversalTime();
Microsoft.AspNetCore.Identity (1)
SecurityStampValidator.cs (1)
117context.Properties.IssuedUtc = TimeProvider.GetUtcNow();
5 references to IssuedUtc
Microsoft.AspNetCore.Authentication.Cookies (4)
CookieAuthenticationHandler.cs (4)
95var issuedUtc = ticket.Properties.IssuedUtc; 118var issuedUtc = ticket.Properties.IssuedUtc; 312if (signInContext.Properties.IssuedUtc.HasValue) 314issuedUtc = signInContext.Properties.IssuedUtc.Value;
Microsoft.AspNetCore.Identity (1)
SecurityStampValidator.cs (1)
139var issuedUtc = context.Properties.IssuedUtc;