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)
227return AuthenticateResult.Success(new AuthenticationTicket(context.Principal, context.Properties, Scheme.Name)); 313if (signInContext.Properties.IssuedUtc.HasValue) 315issuedUtc = signInContext.Properties.IssuedUtc.Value; 320signInContext.Properties.IssuedUtc = issuedUtc; 323if (!signInContext.Properties.ExpiresUtc.HasValue) 325signInContext.Properties.ExpiresUtc = issuedUtc.Add(Options.ExpireTimeSpan); 330if (signInContext.Properties.IsPersistent) 332var expiresUtc = signInContext.Properties.ExpiresUtc ?? issuedUtc.Add(Options.ExpireTimeSpan); 336var ticket = new AuthenticationTicket(signInContext.Principal!, signInContext.Properties, signInContext.Scheme.Name); 369signInContext.Properties, 376await ApplyHeaders(shouldRedirect: true, shouldHonorReturnUrlParameter, signedInContext.Properties); 412await ApplyHeaders(shouldRedirect: true, shouldHonorReturnUrlParameter, context.Properties);
Microsoft.AspNetCore.Identity (2)
SecurityStampValidator.cs (2)
117context.Properties.IssuedUtc = TimeProvider.GetUtcNow(); 139var issuedUtc = context.Properties.IssuedUtc;