JwtBearerExtensions.AddJwtBearer Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
AddJwtBearer(AuthenticationBuilder) |
Povolí ověřování nosnou metodou JWT pomocí výchozího schématu AuthenticationScheme.
Ověřování nosných JWT provádí ověřování extrahováním a ověřením tokenu JWT z hlavičky |
AddJwtBearer(AuthenticationBuilder, Action<JwtBearerOptions>) |
Povolí ověřování nosnou metodou JWT pomocí výchozího schématu AuthenticationScheme.
Ověřování nosných JWT provádí ověřování extrahováním a ověřením tokenu JWT z hlavičky |
AddJwtBearer(AuthenticationBuilder, String) |
Povolí ověřování nosnou metodou JWT pomocí předdefinovaných schémat.
Ověřování nosných JWT provádí ověřování extrahováním a ověřením tokenu JWT z hlavičky |
AddJwtBearer(AuthenticationBuilder, String, Action<JwtBearerOptions>) |
Povolí ověřování nosnou metodou JWT pomocí zadaného schématu.
Ověřování nosných JWT provádí ověřování extrahováním a ověřením tokenu JWT z hlavičky |
AddJwtBearer(AuthenticationBuilder, String, String, Action<JwtBearerOptions>) |
Povolí ověřování nosnou metodou JWT pomocí zadaného schématu.
Ověřování nosných JWT provádí ověřování extrahováním a ověřením tokenu JWT z hlavičky |
AddJwtBearer(AuthenticationBuilder)
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
Povolí ověřování nosnou metodou JWT pomocí výchozího schématu AuthenticationScheme.
Ověřování nosných JWT provádí ověřování extrahováním a ověřením tokenu JWT z hlavičky Authorization
požadavku.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddJwtBearer (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder);
static member AddJwtBearer : Microsoft.AspNetCore.Authentication.AuthenticationBuilder -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddJwtBearer (builder As AuthenticationBuilder) As AuthenticationBuilder
Parametry
- builder
- AuthenticationBuilder
Hodnota AuthenticationBuilder
Návraty
Odkaz na builder
po dokončení operace.
Platí pro
AddJwtBearer(AuthenticationBuilder, Action<JwtBearerOptions>)
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
Povolí ověřování nosnou metodou JWT pomocí výchozího schématu AuthenticationScheme.
Ověřování nosných JWT provádí ověřování extrahováním a ověřením tokenu JWT z hlavičky Authorization
požadavku.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddJwtBearer (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, Action<Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions> configureOptions);
static member AddJwtBearer : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * Action<Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddJwtBearer (builder As AuthenticationBuilder, configureOptions As Action(Of JwtBearerOptions)) As AuthenticationBuilder
Parametry
- builder
- AuthenticationBuilder
Hodnota AuthenticationBuilder
- configureOptions
- Action<JwtBearerOptions>
Delegát, který umožňuje konfiguraci JwtBearerOptions.
Návraty
Odkaz na builder
po dokončení operace.
Platí pro
AddJwtBearer(AuthenticationBuilder, String)
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
Povolí ověřování nosnou metodou JWT pomocí předdefinovaných schémat.
Ověřování nosných JWT provádí ověřování extrahováním a ověřením tokenu JWT z hlavičky Authorization
požadavku.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddJwtBearer (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme);
static member AddJwtBearer : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddJwtBearer (builder As AuthenticationBuilder, authenticationScheme As String) As AuthenticationBuilder
Parametry
- builder
- AuthenticationBuilder
Hodnota AuthenticationBuilder
- authenticationScheme
- String
Schéma ověřování.
Návraty
Odkaz na builder
po dokončení operace.
Platí pro
AddJwtBearer(AuthenticationBuilder, String, Action<JwtBearerOptions>)
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
Povolí ověřování nosnou metodou JWT pomocí zadaného schématu.
Ověřování nosných JWT provádí ověřování extrahováním a ověřením tokenu JWT z hlavičky Authorization
požadavku.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddJwtBearer (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, Action<Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions> configureOptions);
static member AddJwtBearer : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * Action<Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddJwtBearer (builder As AuthenticationBuilder, authenticationScheme As String, configureOptions As Action(Of JwtBearerOptions)) As AuthenticationBuilder
Parametry
- builder
- AuthenticationBuilder
Hodnota AuthenticationBuilder
- authenticationScheme
- String
Schéma ověřování.
- configureOptions
- Action<JwtBearerOptions>
Delegát, který umožňuje konfiguraci JwtBearerOptions.
Návraty
Odkaz na builder
po dokončení operace.
Platí pro
AddJwtBearer(AuthenticationBuilder, String, String, Action<JwtBearerOptions>)
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
- Zdroj:
- JwtBearerExtensions.cs
Povolí ověřování nosnou metodou JWT pomocí zadaného schématu.
Ověřování nosných JWT provádí ověřování extrahováním a ověřením tokenu JWT z hlavičky Authorization
požadavku.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddJwtBearer (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, string displayName, Action<Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions> configureOptions);
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddJwtBearer (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, string? displayName, Action<Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions> configureOptions);
static member AddJwtBearer : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * string * Action<Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddJwtBearer (builder As AuthenticationBuilder, authenticationScheme As String, displayName As String, configureOptions As Action(Of JwtBearerOptions)) As AuthenticationBuilder
Parametry
- builder
- AuthenticationBuilder
Hodnota AuthenticationBuilder
- authenticationScheme
- String
Schéma ověřování.
- displayName
- String
Zobrazovaný název obslužné rutiny ověřování.
- configureOptions
- Action<JwtBearerOptions>
Delegát, který umožňuje konfiguraci JwtBearerOptions.
Návraty
Odkaz na builder
po dokončení operace.