Sdílet prostřednictvím


BearerTokenExtensions.AddBearerToken Metoda

Definice

Přetížení

AddBearerToken(AuthenticationBuilder)

Přidá ověřování nosný token. Výchozí schéma je určeno AuthenticationScheme.

Nosné tokeny lze získat voláním SignInAsync(HttpContext, String, ClaimsPrincipal).

AddBearerToken(AuthenticationBuilder, Action<BearerTokenOptions>)

Přidá ověřování nosný token. Výchozí schéma je určeno AuthenticationScheme.

Nosné tokeny lze získat voláním SignInAsync(HttpContext, String, ClaimsPrincipal).

AddBearerToken(AuthenticationBuilder, String)

Přidá ověřování nosný token.

Nosné tokeny lze získat voláním SignInAsync(HttpContext, String, ClaimsPrincipal).

AddBearerToken(AuthenticationBuilder, String, Action<BearerTokenOptions>)

Přidá ověřování nosný token.

Nosné tokeny lze získat voláním SignInAsync(HttpContext, String, ClaimsPrincipal).

AddBearerToken(AuthenticationBuilder)

Zdroj:
BearerTokenExtensions.cs

Přidá ověřování nosný token. Výchozí schéma je určeno 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

Návraty

Odkaz na builder po dokončení operace.

Platí pro

AddBearerToken(AuthenticationBuilder, Action<BearerTokenOptions>)

Zdroj:
BearerTokenExtensions.cs

Přidá ověřování nosný token. Výchozí schéma je určeno 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

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ěřování nosný token.

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

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ěřování nosný token.

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

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.

Platí pro