BearerTokenExtensions.AddBearerToken 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í
AddBearerToken(AuthenticationBuilder) |
Přidá ověření nosné tokeny. Výchozí schéma je určeno pomocí AuthenticationScheme. Nosné tokeny lze získat voláním SignInAsync(HttpContext, String, ClaimsPrincipal). |
AddBearerToken(AuthenticationBuilder, Action<BearerTokenOptions>) |
Přidá ověření nosné tokeny. Výchozí schéma je určeno pomocí AuthenticationScheme. Nosné tokeny lze získat voláním SignInAsync(HttpContext, String, ClaimsPrincipal). |
AddBearerToken(AuthenticationBuilder, String) |
Přidá ověření nosné tokeny. Nosné tokeny lze získat voláním SignInAsync(HttpContext, String, ClaimsPrincipal). |
AddBearerToken(AuthenticationBuilder, String, Action<BearerTokenOptions>) |
Přidá ověření nosné tokeny. Nosné tokeny lze získat voláním SignInAsync(HttpContext, String, ClaimsPrincipal). |
AddBearerToken(AuthenticationBuilder)
- Zdroj:
- BearerTokenExtensions.cs
Přidá ověření nosné tokeny. Výchozí schéma je určeno pomocí AuthenticationScheme.
Nosné tokeny lze získat voláním SignInAsync(HttpContext, String, ClaimsPrincipal).
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddBearerToken (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder);
static member AddBearerToken : Microsoft.AspNetCore.Authentication.AuthenticationBuilder -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddBearerToken (builder As AuthenticationBuilder) As AuthenticationBuilder
Parametry
- builder
- AuthenticationBuilder
Hodnota AuthenticationBuilder
Návraty
Odkaz na builder
po dokončení operace.
Platí pro
AddBearerToken(AuthenticationBuilder, Action<BearerTokenOptions>)
- Zdroj:
- BearerTokenExtensions.cs
Přidá ověření nosné tokeny. Výchozí schéma je určeno pomocí AuthenticationScheme.
Nosné tokeny lze získat voláním SignInAsync(HttpContext, String, ClaimsPrincipal).
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddBearerToken (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, Action<Microsoft.AspNetCore.Authentication.BearerToken.BearerTokenOptions> configure);
static member AddBearerToken : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * Action<Microsoft.AspNetCore.Authentication.BearerToken.BearerTokenOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddBearerToken (builder As AuthenticationBuilder, configure As Action(Of BearerTokenOptions)) As AuthenticationBuilder
Parametry
- builder
- AuthenticationBuilder
Hodnota AuthenticationBuilder
- configure
- Action<BearerTokenOptions>
Akce použitá ke konfiguraci možností ověřování nosné tokeny
Návraty
Odkaz na builder
po dokončení operace.
Platí pro
AddBearerToken(AuthenticationBuilder, String)
- Zdroj:
- BearerTokenExtensions.cs
Přidá ověření nosné tokeny.
Nosné tokeny lze získat voláním SignInAsync(HttpContext, String, ClaimsPrincipal).
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddBearerToken (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme);
static member AddBearerToken : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddBearerToken (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
AddBearerToken(AuthenticationBuilder, String, Action<BearerTokenOptions>)
- Zdroj:
- BearerTokenExtensions.cs
Přidá ověření nosné tokeny.
Nosné tokeny lze získat voláním SignInAsync(HttpContext, String, ClaimsPrincipal).
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddBearerToken (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, Action<Microsoft.AspNetCore.Authentication.BearerToken.BearerTokenOptions> configure);
static member AddBearerToken : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * Action<Microsoft.AspNetCore.Authentication.BearerToken.BearerTokenOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddBearerToken (builder As AuthenticationBuilder, authenticationScheme As String, configure As Action(Of BearerTokenOptions)) As AuthenticationBuilder
Parametry
- builder
- AuthenticationBuilder
Hodnota AuthenticationBuilder
- authenticationScheme
- String
Schéma ověřování.
- configure
- Action<BearerTokenOptions>
Akce použitá ke konfiguraci možností ověřování nosné tokeny
Návraty
Odkaz na builder
po dokončení operace.