7 writes to IssuedUtc
Microsoft.AspNetCore.Authentication.Cookies (2)
CookieAuthenticationHandler.cs (2)
255properties.IssuedUtc = _refreshIssuedUtc; 320signInContext.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)
96var issuedUtc = ticket.Properties.IssuedUtc; 119var issuedUtc = ticket.Properties.IssuedUtc; 313if (signInContext.Properties.IssuedUtc.HasValue) 315issuedUtc = signInContext.Properties.IssuedUtc.Value;
Microsoft.AspNetCore.Identity (1)
SecurityStampValidator.cs (1)
139var issuedUtc = context.Properties.IssuedUtc;