| File: CookieSigningInContext.cs | Web Access |
| Project: src\aspnetcore\src\Security\Authentication\Cookies\src\Microsoft.AspNetCore.Authentication.Cookies.csproj (Microsoft.AspNetCore.Authentication.Cookies) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Security.Claims; using Microsoft.AspNetCore.Http; namespace Microsoft.AspNetCore.Authentication.Cookies; /// <summary> /// Context object passed to the <see cref="CookieAuthenticationEvents.SigningIn(CookieSigningInContext)"/>. /// </summary> public class CookieSigningInContext : PrincipalContext<CookieAuthenticationOptions> { /// <summary> /// Creates a new instance of the context object. /// </summary> /// <param name="context">The HTTP request context</param> /// <param name="scheme">The scheme data</param> /// <param name="options">The handler options</param> /// <param name="principal">Initializes Principal property</param> /// <param name="properties">The authentication properties.</param> /// <param name="cookieOptions">Initializes options for the authentication cookie.</param> public CookieSigningInContext( HttpContext context, AuthenticationScheme scheme, CookieAuthenticationOptions options, ClaimsPrincipal principal, AuthenticationProperties? properties, CookieOptions cookieOptions) : base(context, scheme, options, properties) { CookieOptions = cookieOptions; Principal = principal; } /// <summary> /// The options for creating the outgoing cookie. /// May be replace or altered during the SigningIn call. /// </summary> public CookieOptions CookieOptions { get; set; } }