OpenIdConnectExtensions.AddOpenIdConnect Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
AddOpenIdConnect(AuthenticationBuilder) |
Agrega la autenticación de OpenId Connect al AuthenticationBuilder uso del esquema predeterminado. El esquema predeterminado se especifica mediante AuthenticationScheme. OpenID Connect es una capa de identidad sobre el protocolo OAuth 2.0. Permite a los clientes solicitar y recibir información sobre las sesiones autenticadas y los usuarios finales. |
AddOpenIdConnect(AuthenticationBuilder, Action<OpenIdConnectOptions>) |
Agrega la autenticación de OpenId Connect al AuthenticationBuilder uso del esquema predeterminado. El esquema predeterminado se especifica mediante AuthenticationScheme. OpenID Connect es una capa de identidad sobre el protocolo OAuth 2.0. Permite a los clientes solicitar y recibir información sobre las sesiones autenticadas y los usuarios finales. |
AddOpenIdConnect(AuthenticationBuilder, String, Action<OpenIdConnectOptions>) |
Agrega la autenticación de OpenId Connect al AuthenticationBuilder uso del esquema especificado. OpenID Connect es una capa de identidad sobre el protocolo OAuth 2.0. Permite a los clientes solicitar y recibir información sobre las sesiones autenticadas y los usuarios finales. |
AddOpenIdConnect(AuthenticationBuilder, String, String, Action<OpenIdConnectOptions>) |
Agrega la autenticación de OpenId Connect al AuthenticationBuilder uso del esquema especificado. OpenID Connect es una capa de identidad sobre el protocolo OAuth 2.0. Permite a los clientes solicitar y recibir información sobre las sesiones autenticadas y los usuarios finales. |
AddOpenIdConnect(AuthenticationBuilder)
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
Agrega la autenticación de OpenId Connect al AuthenticationBuilder uso del esquema predeterminado. El esquema predeterminado se especifica mediante AuthenticationScheme.
OpenID Connect es una capa de identidad sobre el protocolo OAuth 2.0. Permite a los clientes solicitar y recibir información sobre las sesiones autenticadas y los usuarios finales.
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
Parámetros
Devoluciones
Referencia a builder
una vez completada la operación.
Se aplica a
AddOpenIdConnect(AuthenticationBuilder, Action<OpenIdConnectOptions>)
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
Agrega la autenticación de OpenId Connect al AuthenticationBuilder uso del esquema predeterminado. El esquema predeterminado se especifica mediante AuthenticationScheme.
OpenID Connect es una capa de identidad sobre el protocolo OAuth 2.0. Permite a los clientes solicitar y recibir información sobre las sesiones autenticadas y los usuarios finales.
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
Parámetros
- configureOptions
- Action<OpenIdConnectOptions>
Delegado para configurar OpenIdConnectOptions.
Devoluciones
Referencia a builder
una vez completada la operación.
Se aplica a
AddOpenIdConnect(AuthenticationBuilder, String, Action<OpenIdConnectOptions>)
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
Agrega la autenticación de OpenId Connect al AuthenticationBuilder uso del esquema especificado.
OpenID Connect es una capa de identidad sobre el protocolo OAuth 2.0. Permite a los clientes solicitar y recibir información sobre las sesiones autenticadas y los usuarios finales.
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
Parámetros
- authenticationScheme
- String
Esquema de autenticación.
- configureOptions
- Action<OpenIdConnectOptions>
Delegado para configurar OpenIdConnectOptions.
Devoluciones
Referencia a builder
una vez completada la operación.
Se aplica a
AddOpenIdConnect(AuthenticationBuilder, String, String, Action<OpenIdConnectOptions>)
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
- Source:
- OpenIdConnectExtensions.cs
Agrega la autenticación de OpenId Connect al AuthenticationBuilder uso del esquema especificado.
OpenID Connect es una capa de identidad sobre el protocolo OAuth 2.0. Permite a los clientes solicitar y recibir información sobre las sesiones autenticadas y los usuarios finales.
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
Parámetros
- authenticationScheme
- String
Esquema de autenticación.
- displayName
- String
Nombre para mostrar del controlador de autenticación.
- configureOptions
- Action<OpenIdConnectOptions>
Delegado para configurar OpenIdConnectOptions.
Devoluciones
Referencia a builder
una vez completada la operación.