2 writes to Properties
Microsoft.AspNetCore.Authentication (2)
Events\PropertiesContext.cs (1)
23Properties = properties ?? new AuthenticationProperties();
Events\RedirectContext.cs (1)
29Properties = properties;
14 references to Properties
Microsoft.AspNetCore.Authentication.Cookies (12)
CookieAuthenticationHandler.cs (12)
226return AuthenticateResult.Success(new AuthenticationTicket(context.Principal, context.Properties, Scheme.Name)); 312if (signInContext.Properties.IssuedUtc.HasValue) 314issuedUtc = signInContext.Properties.IssuedUtc.Value; 319signInContext.Properties.IssuedUtc = issuedUtc; 322if (!signInContext.Properties.ExpiresUtc.HasValue) 324signInContext.Properties.ExpiresUtc = issuedUtc.Add(Options.ExpireTimeSpan); 329if (signInContext.Properties.IsPersistent) 331var expiresUtc = signInContext.Properties.ExpiresUtc ?? issuedUtc.Add(Options.ExpireTimeSpan); 335var ticket = new AuthenticationTicket(signInContext.Principal!, signInContext.Properties, signInContext.Scheme.Name); 368signInContext.Properties, 375await ApplyHeaders(shouldRedirect: true, shouldHonorReturnUrlParameter, signedInContext.Properties); 411await ApplyHeaders(shouldRedirect: true, shouldHonorReturnUrlParameter, context.Properties);
Microsoft.AspNetCore.Identity (2)
SecurityStampValidator.cs (2)
117context.Properties.IssuedUtc = TimeProvider.GetUtcNow(); 139var issuedUtc = context.Properties.IssuedUtc;