Partager via


OAuthExtensions.AddOAuth Méthode

Définition

Surcharges

AddOAuth(AuthenticationBuilder, String, Action<OAuthOptions>)

Ajoute l’authentification basée sur OAuth 2.0 à l’aide AuthenticationBuilder du schéma d’authentification spécifié.

AddOAuth(AuthenticationBuilder, String, String, Action<OAuthOptions>)

Ajoute l’authentification basée sur OAuth 2.0 à l’aide AuthenticationBuilder du schéma d’authentification spécifié.

AddOAuth<TOptions,THandler>(AuthenticationBuilder, String, Action<TOptions>)

Ajoute l’authentification basée sur OAuth 2.0 à l’aide AuthenticationBuilder du schéma d’authentification spécifié.

AddOAuth<TOptions,THandler>(AuthenticationBuilder, String, String, Action<TOptions>)

Ajoute l’authentification basée sur OAuth 2.0 à l’aide AuthenticationBuilder du schéma d’authentification spécifié.

AddOAuth(AuthenticationBuilder, String, Action<OAuthOptions>)

Source:
OAuthExtensions.cs
Source:
OAuthExtensions.cs
Source:
OAuthExtensions.cs

Ajoute l’authentification basée sur OAuth 2.0 à l’aide AuthenticationBuilder du schéma d’authentification spécifié.

public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOAuth (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, Action<Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions> configureOptions);
static member AddOAuth : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * Action<Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOAuth (builder As AuthenticationBuilder, authenticationScheme As String, configureOptions As Action(Of OAuthOptions)) As AuthenticationBuilder

Paramètres

authenticationScheme
String

Schéma d'authentification.

configureOptions
Action<OAuthOptions>

Délégué pour configurer OAuthOptions.

Retours

Référence à builder une fois l’opération terminée.

S’applique à

AddOAuth(AuthenticationBuilder, String, String, Action<OAuthOptions>)

Source:
OAuthExtensions.cs
Source:
OAuthExtensions.cs
Source:
OAuthExtensions.cs

Ajoute l’authentification basée sur OAuth 2.0 à l’aide AuthenticationBuilder du schéma d’authentification spécifié.

public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOAuth (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, string displayName, Action<Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions> configureOptions);
static member AddOAuth : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * string * Action<Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOAuth (builder As AuthenticationBuilder, authenticationScheme As String, displayName As String, configureOptions As Action(Of OAuthOptions)) As AuthenticationBuilder

Paramètres

authenticationScheme
String

Schéma d'authentification.

displayName
String

Nom complet du gestionnaire d’authentification.

configureOptions
Action<OAuthOptions>

Délégué pour configurer OAuthOptions.

Retours

Référence à builder une fois l’opération terminée.

S’applique à

AddOAuth<TOptions,THandler>(AuthenticationBuilder, String, Action<TOptions>)

Source:
OAuthExtensions.cs
Source:
OAuthExtensions.cs
Source:
OAuthExtensions.cs

Ajoute l’authentification basée sur OAuth 2.0 à l’aide AuthenticationBuilder du schéma d’authentification spécifié.

public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOAuth<TOptions,THandler> (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, Action<TOptions> configureOptions) where TOptions : Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions, new() where THandler : Microsoft.AspNetCore.Authentication.OAuth.OAuthHandler<TOptions>;
static member AddOAuth : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * Action<'Options (requires 'Options :> Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions and 'Options : (new : unit -> 'Options))> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder (requires 'Options :> Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions and 'Options : (new : unit -> 'Options) and 'Handler :> Microsoft.AspNetCore.Authentication.OAuth.OAuthHandler<'Options>)
<Extension()>
Public Function AddOAuth(Of TOptions As {OAuthOptionsNew}, THandler As {OAuthOptionsNew}) (builder As AuthenticationBuilder, authenticationScheme As String, configureOptions As Action(Of TOptions)) As AuthenticationBuilder

Paramètres de type

TOptions
THandler

Paramètres

authenticationScheme
String

Schéma d'authentification.

configureOptions
Action<TOptions>

Délégué pour configurer les options spécifiques du gestionnaire.

Retours

Référence à builder une fois l’opération terminée.

S’applique à

AddOAuth<TOptions,THandler>(AuthenticationBuilder, String, String, Action<TOptions>)

Source:
OAuthExtensions.cs
Source:
OAuthExtensions.cs
Source:
OAuthExtensions.cs

Ajoute l’authentification basée sur OAuth 2.0 à l’aide AuthenticationBuilder du schéma d’authentification spécifié.

public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOAuth<TOptions,THandler> (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, string displayName, Action<TOptions> configureOptions) where TOptions : Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions, new() where THandler : Microsoft.AspNetCore.Authentication.OAuth.OAuthHandler<TOptions>;
static member AddOAuth : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * string * Action<'Options (requires 'Options :> Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions and 'Options : (new : unit -> 'Options))> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder (requires 'Options :> Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions and 'Options : (new : unit -> 'Options) and 'Handler :> Microsoft.AspNetCore.Authentication.OAuth.OAuthHandler<'Options>)
<Extension()>
Public Function AddOAuth(Of TOptions As {OAuthOptionsNew}, THandler As {OAuthOptionsNew}) (builder As AuthenticationBuilder, authenticationScheme As String, displayName As String, configureOptions As Action(Of TOptions)) As AuthenticationBuilder

Paramètres de type

TOptions
THandler

Paramètres

authenticationScheme
String

Schéma d'authentification.

displayName
String

Nom complet du gestionnaire d’authentification.

configureOptions
Action<TOptions>

Délégué pour configurer les options spécifiques du gestionnaire.

Retours

Référence à builder une fois l’opération terminée.

S’applique à