AuthenticationFailedContext 构造函数

定义

重载

AuthenticationFailedContext(HttpContext, JwtBearerOptions)
AuthenticationFailedContext(HttpContext, AuthenticationScheme, JwtBearerOptions)

初始化 AuthenticationFailedContext 的新实例。

AuthenticationFailedContext(HttpContext, JwtBearerOptions)

public:
 AuthenticationFailedContext(Microsoft::AspNetCore::Http::HttpContext ^ context, Microsoft::AspNetCore::Builder::JwtBearerOptions ^ options);
public AuthenticationFailedContext (Microsoft.AspNetCore.Http.HttpContext context, Microsoft.AspNetCore.Builder.JwtBearerOptions options);
new Microsoft.AspNetCore.Authentication.JwtBearer.AuthenticationFailedContext : Microsoft.AspNetCore.Http.HttpContext * Microsoft.AspNetCore.Builder.JwtBearerOptions -> Microsoft.AspNetCore.Authentication.JwtBearer.AuthenticationFailedContext
Public Sub New (context As HttpContext, options As JwtBearerOptions)

参数

context
HttpContext

适用于

AuthenticationFailedContext(HttpContext, AuthenticationScheme, JwtBearerOptions)

Source:
AuthenticationFailedContext.cs
Source:
AuthenticationFailedContext.cs
Source:
AuthenticationFailedContext.cs
Source:
AuthenticationFailedContext.cs
Source:
AuthenticationFailedContext.cs
Source:
AuthenticationFailedContext.cs
Source:
AuthenticationFailedContext.cs
Source:
AuthenticationFailedContext.cs
Source:
AuthenticationFailedContext.cs

初始化 AuthenticationFailedContext 的新实例。

public:
 AuthenticationFailedContext(Microsoft::AspNetCore::Http::HttpContext ^ context, Microsoft::AspNetCore::Authentication::AuthenticationScheme ^ scheme, Microsoft::AspNetCore::Authentication::JwtBearer::JwtBearerOptions ^ options);
public AuthenticationFailedContext (Microsoft.AspNetCore.Http.HttpContext context, Microsoft.AspNetCore.Authentication.AuthenticationScheme scheme, Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions options);
new Microsoft.AspNetCore.Authentication.JwtBearer.AuthenticationFailedContext : Microsoft.AspNetCore.Http.HttpContext * Microsoft.AspNetCore.Authentication.AuthenticationScheme * Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions -> Microsoft.AspNetCore.Authentication.JwtBearer.AuthenticationFailedContext
Public Sub New (context As HttpContext, scheme As AuthenticationScheme, options As JwtBearerOptions)

参数

context
HttpContext

上下文。

scheme
AuthenticationScheme

身份验证方案。

options
JwtBearerOptions

与方案关联的身份验证选项。

适用于