3 writes to IssuedUtc
Microsoft.AspNetCore.Authentication.Cookies (2)
CookieAuthenticationHandler.cs (2)
254properties.IssuedUtc = _refreshIssuedUtc; 319signInContext.Properties.IssuedUtc = issuedUtc;
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;