Condividi tramite


OpenIdConnectExtensions.AddOpenIdConnect Metodo

Definizione

Overload

AddOpenIdConnect(AuthenticationBuilder)

Aggiunge l'autenticazione OpenId Connect all'uso AuthenticationBuilder dello schema predefinito. Lo schema predefinito è specificato da AuthenticationScheme.

OpenID Connect è un livello di identità sopra il protocollo OAuth 2.0. Consente ai client di richiedere e ricevere informazioni sulle sessioni autenticate e sugli utenti finali.

AddOpenIdConnect(AuthenticationBuilder, Action<OpenIdConnectOptions>)

Aggiunge l'autenticazione OpenId Connect all'uso AuthenticationBuilder dello schema predefinito. Lo schema predefinito è specificato da AuthenticationScheme.

OpenID Connect è un livello di identità sopra il protocollo OAuth 2.0. Consente ai client di richiedere e ricevere informazioni sulle sessioni autenticate e sugli utenti finali.

AddOpenIdConnect(AuthenticationBuilder, String, Action<OpenIdConnectOptions>)

Aggiunge l'autenticazione OpenId Connect all'uso AuthenticationBuilder dello schema specificato.

OpenID Connect è un livello di identità sopra il protocollo OAuth 2.0. Consente ai client di richiedere e ricevere informazioni sulle sessioni autenticate e sugli utenti finali.

AddOpenIdConnect(AuthenticationBuilder, String, String, Action<OpenIdConnectOptions>)

Aggiunge l'autenticazione OpenId Connect all'uso AuthenticationBuilder dello schema specificato.

OpenID Connect è un livello di identità sopra il protocollo OAuth 2.0. Consente ai client di richiedere e ricevere informazioni sulle sessioni autenticate e sugli utenti finali.

AddOpenIdConnect(AuthenticationBuilder)

Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs

Aggiunge l'autenticazione OpenId Connect all'uso AuthenticationBuilder dello schema predefinito. Lo schema predefinito è specificato da AuthenticationScheme.

OpenID Connect è un livello di identità sopra il protocollo OAuth 2.0. Consente ai client di richiedere e ricevere informazioni sulle sessioni autenticate e sugli utenti finali.

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

Parametri

Restituisce

Riferimento a builder dopo il completamento dell'operazione.

Si applica a

AddOpenIdConnect(AuthenticationBuilder, Action<OpenIdConnectOptions>)

Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs

Aggiunge l'autenticazione OpenId Connect all'uso AuthenticationBuilder dello schema predefinito. Lo schema predefinito è specificato da AuthenticationScheme.

OpenID Connect è un livello di identità sopra il protocollo OAuth 2.0. Consente ai client di richiedere e ricevere informazioni sulle sessioni autenticate e sugli utenti finali.

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

Parametri

configureOptions
Action<OpenIdConnectOptions>

Delegato per configurare OpenIdConnectOptions.

Restituisce

Riferimento a builder dopo il completamento dell'operazione.

Si applica a

AddOpenIdConnect(AuthenticationBuilder, String, Action<OpenIdConnectOptions>)

Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs

Aggiunge l'autenticazione OpenId Connect all'uso AuthenticationBuilder dello schema specificato.

OpenID Connect è un livello di identità sopra il protocollo OAuth 2.0. Consente ai client di richiedere e ricevere informazioni sulle sessioni autenticate e sugli utenti finali.

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

Parametri

authenticationScheme
String

Schema di autenticazione.

configureOptions
Action<OpenIdConnectOptions>

Delegato per configurare OpenIdConnectOptions.

Restituisce

Riferimento a builder dopo il completamento dell'operazione.

Si applica a

AddOpenIdConnect(AuthenticationBuilder, String, String, Action<OpenIdConnectOptions>)

Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs
Origine:
OpenIdConnectExtensions.cs

Aggiunge l'autenticazione OpenId Connect all'uso AuthenticationBuilder dello schema specificato.

OpenID Connect è un livello di identità sopra il protocollo OAuth 2.0. Consente ai client di richiedere e ricevere informazioni sulle sessioni autenticate e sugli utenti finali.

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

Parametri

authenticationScheme
String

Schema di autenticazione.

displayName
String

Nome visualizzato per il gestore di autenticazione.

configureOptions
Action<OpenIdConnectOptions>

Delegato per configurare OpenIdConnectOptions.

Restituisce

Riferimento a builder dopo il completamento dell'operazione.

Si applica a