OpenIdConnectExtensions.AddOpenIdConnect Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
AddOpenIdConnect(AuthenticationBuilder) |
Dodaje uwierzytelnianie OpenId Connect do AuthenticationBuilder korzystania ze schematu domyślnego. Schemat domyślny jest określony przez AuthenticationScheme. OpenID Connect to warstwa tożsamości na szczycie protokołu OAuth 2.0. Umożliwia klientom żądanie i odbieranie informacji o uwierzytelnionych sesjach i użytkownikach końcowych. |
AddOpenIdConnect(AuthenticationBuilder, Action<OpenIdConnectOptions>) |
Dodaje uwierzytelnianie OpenId Connect do AuthenticationBuilder korzystania ze schematu domyślnego. Schemat domyślny jest określony przez AuthenticationScheme. OpenID Connect to warstwa tożsamości na szczycie protokołu OAuth 2.0. Umożliwia klientom żądanie i odbieranie informacji o uwierzytelnionych sesjach i użytkownikach końcowych. |
AddOpenIdConnect(AuthenticationBuilder, String, Action<OpenIdConnectOptions>) |
Dodaje uwierzytelnianie OpenId Connect do AuthenticationBuilder korzystania z określonego schematu. OpenID Connect to warstwa tożsamości na szczycie protokołu OAuth 2.0. Umożliwia klientom żądanie i odbieranie informacji o uwierzytelnionych sesjach i użytkownikach końcowych. |
AddOpenIdConnect(AuthenticationBuilder, String, String, Action<OpenIdConnectOptions>) |
Dodaje uwierzytelnianie OpenId Connect do AuthenticationBuilder korzystania z określonego schematu. OpenID Connect to warstwa tożsamości na szczycie protokołu OAuth 2.0. Umożliwia klientom żądanie i odbieranie informacji o uwierzytelnionych sesjach i użytkownikach końcowych. |
AddOpenIdConnect(AuthenticationBuilder)
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
Dodaje uwierzytelnianie OpenId Connect do AuthenticationBuilder korzystania ze schematu domyślnego. Schemat domyślny jest określony przez AuthenticationScheme.
OpenID Connect to warstwa tożsamości na szczycie protokołu OAuth 2.0. Umożliwia klientom żądanie i odbieranie informacji o uwierzytelnionych sesjach i użytkownikach końcowych.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder);
static member AddOpenIdConnect : Microsoft.AspNetCore.Authentication.AuthenticationBuilder -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOpenIdConnect (builder As AuthenticationBuilder) As AuthenticationBuilder
Parametry
- builder
- AuthenticationBuilder
Element AuthenticationBuilder.
Zwraca
Odwołanie do builder
po zakończeniu operacji.
Dotyczy
AddOpenIdConnect(AuthenticationBuilder, Action<OpenIdConnectOptions>)
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
Dodaje uwierzytelnianie OpenId Connect do AuthenticationBuilder korzystania ze schematu domyślnego. Schemat domyślny jest określony przez AuthenticationScheme.
OpenID Connect to warstwa tożsamości na szczycie protokołu OAuth 2.0. Umożliwia klientom żądanie i odbieranie informacji o uwierzytelnionych sesjach i użytkownikach końcowych.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> configureOptions);
static member AddOpenIdConnect : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOpenIdConnect (builder As AuthenticationBuilder, configureOptions As Action(Of OpenIdConnectOptions)) As AuthenticationBuilder
Parametry
- builder
- AuthenticationBuilder
Element AuthenticationBuilder.
- configureOptions
- Action<OpenIdConnectOptions>
Pełnomocnik do skonfigurowania OpenIdConnectOptions.
Zwraca
Odwołanie do builder
po zakończeniu operacji.
Dotyczy
AddOpenIdConnect(AuthenticationBuilder, String, Action<OpenIdConnectOptions>)
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
Dodaje uwierzytelnianie OpenId Connect do AuthenticationBuilder korzystania z określonego schematu.
OpenID Connect to warstwa tożsamości na szczycie protokołu OAuth 2.0. Umożliwia klientom żądanie i odbieranie informacji o uwierzytelnionych sesjach i użytkownikach końcowych.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> configureOptions);
static member AddOpenIdConnect : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOpenIdConnect (builder As AuthenticationBuilder, authenticationScheme As String, configureOptions As Action(Of OpenIdConnectOptions)) As AuthenticationBuilder
Parametry
- builder
- AuthenticationBuilder
Element AuthenticationBuilder.
- authenticationScheme
- String
Schemat uwierzytelniania.
- configureOptions
- Action<OpenIdConnectOptions>
Pełnomocnik do skonfigurowania OpenIdConnectOptions.
Zwraca
Odwołanie do builder
po zakończeniu operacji.
Dotyczy
AddOpenIdConnect(AuthenticationBuilder, String, String, Action<OpenIdConnectOptions>)
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
- Źródło:
- OpenIdConnectExtensions.cs
Dodaje uwierzytelnianie OpenId Connect do AuthenticationBuilder korzystania z określonego schematu.
OpenID Connect to warstwa tożsamości na szczycie protokołu OAuth 2.0. Umożliwia klientom żądanie i odbieranie informacji o uwierzytelnionych sesjach i użytkownikach końcowych.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, string displayName, Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> configureOptions);
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, string? displayName, Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> configureOptions);
static member AddOpenIdConnect : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * string * Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOpenIdConnect (builder As AuthenticationBuilder, authenticationScheme As String, displayName As String, configureOptions As Action(Of OpenIdConnectOptions)) As AuthenticationBuilder
Parametry
- builder
- AuthenticationBuilder
Element AuthenticationBuilder.
- authenticationScheme
- String
Schemat uwierzytelniania.
- displayName
- String
Nazwa wyświetlana programu obsługi uwierzytelniania.
- configureOptions
- Action<OpenIdConnectOptions>
Pełnomocnik do skonfigurowania OpenIdConnectOptions.
Zwraca
Odwołanie do builder
po zakończeniu operacji.