JwtBearerAppBuilderExtensions.UseJwtBearerAuthentication Метод

Определение

Перегрузки

UseJwtBearerAuthentication(IApplicationBuilder)
Устаревшие..
Устаревшие..

UseJwtBearerAuthentication устарел. Настройте проверку подлинности JwtBearer с помощью AddAuthentication(). AddJwtBearer в ConfigureServices. Дополнительные сведения см. в статье https://go.microsoft.com/fwlink/?linkid=845470.

UseJwtBearerAuthentication(IApplicationBuilder, JwtBearerOptions)
Устаревшие..
Устаревшие..

UseJwtBearerAuthentication устарел. Настройте проверку подлинности JwtBearer с помощью AddAuthentication(). AddJwtBearer в ConfigureServices. Дополнительные сведения см. в статье https://go.microsoft.com/fwlink/?linkid=845470.

UseJwtBearerAuthentication(IApplicationBuilder, JwtBearerOptions)

Добавляет ПО промежуточного JwtBearerMiddleware слоя в указанный IApplicationBuilderобъект , который включает возможности обработки маркеров носителя. Это ПО промежуточного слоя понимает правильно отформатированные и защищенные маркеры, которые отображаются в заголовке запроса. Если options.AuthenticationMode имеет значение Active, утверждения в токене носителя добавляются к IPrincipal User текущего запроса. Если options.AuthenticationMode является пассивным, текущий запрос не изменяется, но IAuthenticationManager AuthenticateAsync можно использовать в любое время для получения утверждений из маркера носителя запроса. См. также http://tools.ietf.org/html/rfc6749

UseJwtBearerAuthentication(IApplicationBuilder)

Исходный код:
JwtBearerAppBuilderExtensions.cs
Исходный код:
JwtBearerAppBuilderExtensions.cs

Внимание!

UseJwtBearerAuthentication is obsolete. Configure JwtBearer authentication with AddAuthentication().AddJwtBearer in ConfigureServices. See https://go.microsoft.com/fwlink/?linkid=845470 for more details.

UseJwtBearerAuthentication устарел. Настройте проверку подлинности JwtBearer с помощью AddAuthentication(). AddJwtBearer в ConfigureServices. Дополнительные сведения см. в статье https://go.microsoft.com/fwlink/?linkid=845470.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Builder::IApplicationBuilder ^ UseJwtBearerAuthentication(Microsoft::AspNetCore::Builder::IApplicationBuilder ^ app);
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseJwtBearerAuthentication (this Microsoft.AspNetCore.Builder.IApplicationBuilder app);
[System.Obsolete("See https://go.microsoft.com/fwlink/?linkid=845470", true)]
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseJwtBearerAuthentication (this Microsoft.AspNetCore.Builder.IApplicationBuilder app);
[System.Obsolete("UseJwtBearerAuthentication is obsolete. Configure JwtBearer authentication with AddAuthentication().AddJwtBearer in ConfigureServices. See https://go.microsoft.com/fwlink/?linkid=845470 for more details.", true)]
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseJwtBearerAuthentication (this Microsoft.AspNetCore.Builder.IApplicationBuilder app);
static member UseJwtBearerAuthentication : Microsoft.AspNetCore.Builder.IApplicationBuilder -> Microsoft.AspNetCore.Builder.IApplicationBuilder
[<System.Obsolete("See https://go.microsoft.com/fwlink/?linkid=845470", true)>]
static member UseJwtBearerAuthentication : Microsoft.AspNetCore.Builder.IApplicationBuilder -> Microsoft.AspNetCore.Builder.IApplicationBuilder
[<System.Obsolete("UseJwtBearerAuthentication is obsolete. Configure JwtBearer authentication with AddAuthentication().AddJwtBearer in ConfigureServices. See https://go.microsoft.com/fwlink/?linkid=845470 for more details.", true)>]
static member UseJwtBearerAuthentication : Microsoft.AspNetCore.Builder.IApplicationBuilder -> Microsoft.AspNetCore.Builder.IApplicationBuilder
<Extension()>
Public Function UseJwtBearerAuthentication (app As IApplicationBuilder) As IApplicationBuilder

Параметры

app
IApplicationBuilder

Объект , IApplicationBuilder в который добавляется обработчик.

Возвращаемое значение

Ссылка на этот экземпляр после завершения операции.

Атрибуты

Применяется к

UseJwtBearerAuthentication(IApplicationBuilder, JwtBearerOptions)

Исходный код:
JwtBearerAppBuilderExtensions.cs
Исходный код:
JwtBearerAppBuilderExtensions.cs

Внимание!

UseJwtBearerAuthentication is obsolete. Configure JwtBearer authentication with AddAuthentication().AddJwtBearer in ConfigureServices. See https://go.microsoft.com/fwlink/?linkid=845470 for more details.

UseJwtBearerAuthentication устарел. Настройте проверку подлинности JwtBearer с помощью AddAuthentication(). AddJwtBearer в ConfigureServices. Дополнительные сведения см. в статье https://go.microsoft.com/fwlink/?linkid=845470.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Builder::IApplicationBuilder ^ UseJwtBearerAuthentication(Microsoft::AspNetCore::Builder::IApplicationBuilder ^ app, Microsoft::AspNetCore::Authentication::JwtBearer::JwtBearerOptions ^ options);
[System.Obsolete("See https://go.microsoft.com/fwlink/?linkid=845470", true)]
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseJwtBearerAuthentication (this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions options);
[System.Obsolete("UseJwtBearerAuthentication is obsolete. Configure JwtBearer authentication with AddAuthentication().AddJwtBearer in ConfigureServices. See https://go.microsoft.com/fwlink/?linkid=845470 for more details.", true)]
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseJwtBearerAuthentication (this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions options);
[<System.Obsolete("See https://go.microsoft.com/fwlink/?linkid=845470", true)>]
static member UseJwtBearerAuthentication : Microsoft.AspNetCore.Builder.IApplicationBuilder * Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions -> Microsoft.AspNetCore.Builder.IApplicationBuilder
[<System.Obsolete("UseJwtBearerAuthentication is obsolete. Configure JwtBearer authentication with AddAuthentication().AddJwtBearer in ConfigureServices. See https://go.microsoft.com/fwlink/?linkid=845470 for more details.", true)>]
static member UseJwtBearerAuthentication : Microsoft.AspNetCore.Builder.IApplicationBuilder * Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions -> Microsoft.AspNetCore.Builder.IApplicationBuilder
<Extension()>
Public Function UseJwtBearerAuthentication (app As IApplicationBuilder, options As JwtBearerOptions) As IApplicationBuilder

Параметры

app
IApplicationBuilder

Объект , IApplicationBuilder в который добавляется обработчик.

options
JwtBearerOptions

Объект , JwtBearerOptions указывающий параметры для обработчика.

Возвращаемое значение

Ссылка на этот экземпляр после завершения операции.

Атрибуты

Применяется к

UseJwtBearerAuthentication(IApplicationBuilder, JwtBearerOptions)

Добавляет ПО промежуточного JwtBearerMiddleware слоя в указанный IApplicationBuilderобъект , который включает возможности обработки маркеров носителя. Это ПО промежуточного слоя понимает правильно отформатированные и защищенные маркеры, которые отображаются в заголовке запроса. Если options.AuthenticationMode имеет значение Active, утверждения в токене носителя добавляются к IPrincipal User текущего запроса. Если options.AuthenticationMode является пассивным, текущий запрос не изменяется, но IAuthenticationManager AuthenticateAsync можно использовать в любое время для получения утверждений из маркера носителя запроса. См. также http://tools.ietf.org/html/rfc6749

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Builder::IApplicationBuilder ^ UseJwtBearerAuthentication(Microsoft::AspNetCore::Builder::IApplicationBuilder ^ app, Microsoft::AspNetCore::Builder::JwtBearerOptions ^ options);
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseJwtBearerAuthentication (this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Builder.JwtBearerOptions options);
static member UseJwtBearerAuthentication : Microsoft.AspNetCore.Builder.IApplicationBuilder * Microsoft.AspNetCore.Builder.JwtBearerOptions -> Microsoft.AspNetCore.Builder.IApplicationBuilder
<Extension()>
Public Function UseJwtBearerAuthentication (app As IApplicationBuilder, options As JwtBearerOptions) As IApplicationBuilder

Параметры

app
IApplicationBuilder

Объект , IApplicationBuilder в который добавляется ПО промежуточного слоя.

options
JwtBearerOptions

Объект , JwtBearerOptions указывающий параметры для ПО промежуточного слоя.

Возвращаемое значение

Ссылка на этот экземпляр после завершения операции.

Применяется к