CookieSigningInContext Class

Definition

Context object passed to the SigningIn(CookieSigningInContext).

public ref class CookieSigningInContext : Microsoft::AspNetCore::Authentication::Cookies::BaseCookieContext
public ref class CookieSigningInContext : Microsoft::AspNetCore::Authentication::PrincipalContext<Microsoft::AspNetCore::Authentication::Cookies::CookieAuthenticationOptions ^>
public class CookieSigningInContext : Microsoft.AspNetCore.Authentication.Cookies.BaseCookieContext
public class CookieSigningInContext : Microsoft.AspNetCore.Authentication.PrincipalContext<Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationOptions>
type CookieSigningInContext = class
    inherit BaseCookieContext
type CookieSigningInContext = class
    inherit PrincipalContext<CookieAuthenticationOptions>
Public Class CookieSigningInContext
Inherits BaseCookieContext
Public Class CookieSigningInContext
Inherits PrincipalContext(Of CookieAuthenticationOptions)
Inheritance
CookieSigningInContext
Inheritance

Constructors

CookieSigningInContext(HttpContext, AuthenticationScheme, CookieAuthenticationOptions, ClaimsPrincipal, AuthenticationProperties, CookieOptions)

Creates a new instance of the context object.

CookieSigningInContext(HttpContext, CookieAuthenticationOptions, String, ClaimsPrincipal, AuthenticationProperties, CookieOptions)

Creates a new instance of the context object.

Properties

AuthenticationScheme

The name of the AuthenticationScheme creating a cookie

CookieOptions

The options for creating the outgoing cookie. May be replace or altered during the SigningIn call.

HttpContext (Inherited from BaseContext)
HttpContext

The context.

(Inherited from BaseContext<TOptions>)
Options (Inherited from BaseCookieContext)
Options

Gets the authentication options associated with the scheme.

(Inherited from BaseContext<TOptions>)
Principal

Contains the claims about to be converted into the outgoing cookie. May be replaced or altered during the SigningIn call.

Principal

Gets the ClaimsPrincipal containing the user claims.

(Inherited from PrincipalContext<TOptions>)
Properties

Contains the extra data about to be contained in the outgoing cookie. May be replaced or altered during the SigningIn call.

Properties

Gets or sets the AuthenticationProperties.

(Inherited from PropertiesContext<TOptions>)
Request (Inherited from BaseContext)
Request

The request.

(Inherited from BaseContext<TOptions>)
Response (Inherited from BaseContext)
Response

The response.

(Inherited from BaseContext<TOptions>)
Scheme

The authentication scheme.

(Inherited from BaseContext<TOptions>)

Applies to