NegotiateExtensions.AddNegotiate Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
AddNegotiate(AuthenticationBuilder) |
Configure pour utiliser l’authentification AuthenticationBuilder Negotiate (également appelée Windows, Kerberos ou NTLM) à l’aide du schéma par défaut de AuthenticationScheme. Ce gestionnaire d’authentification prend en charge Kerberos sur les serveurs Windows et Linux. |
AddNegotiate(AuthenticationBuilder, Action<NegotiateOptions>) |
Configure pour utiliser l’authentification AuthenticationBuilder Negotiate (également appelée Windows, Kerberos ou NTLM) à l’aide du schéma par défaut. Le schéma par défaut est spécifié par AuthenticationScheme. Ce gestionnaire d’authentification prend en charge Kerberos sur les serveurs Windows et Linux. |
AddNegotiate(AuthenticationBuilder, String, Action<NegotiateOptions>) |
Configure le pour utiliser l’authentification AuthenticationBuilder Negotiate (également appelée Windows, Kerberos ou NTLM) à l’aide du schéma d’authentification spécifié. Ce gestionnaire d’authentification prend en charge Kerberos sur les serveurs Windows et Linux. |
AddNegotiate(AuthenticationBuilder, String, String, Action<NegotiateOptions>) |
Configure le pour utiliser l’authentification AuthenticationBuilder Negotiate (également appelée Windows, Kerberos ou NTLM) à l’aide du schéma d’authentification spécifié. Ce gestionnaire d’authentification prend en charge Kerberos sur les serveurs Windows et Linux. |
AddNegotiate(AuthenticationBuilder)
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
Configure pour utiliser l’authentification AuthenticationBuilder Negotiate (également appelée Windows, Kerberos ou NTLM) à l’aide du schéma par défaut de AuthenticationScheme.
Ce gestionnaire d’authentification prend en charge Kerberos sur les serveurs Windows et Linux.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddNegotiate (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder);
static member AddNegotiate : Microsoft.AspNetCore.Authentication.AuthenticationBuilder -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddNegotiate (builder As AuthenticationBuilder) As AuthenticationBuilder
Paramètres
- builder
- AuthenticationBuilder
L’AuthenticationBuilderopérateur
Retours
Générateur d’origine.
S’applique à
AddNegotiate(AuthenticationBuilder, Action<NegotiateOptions>)
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
Configure pour utiliser l’authentification AuthenticationBuilder Negotiate (également appelée Windows, Kerberos ou NTLM) à l’aide du schéma par défaut. Le schéma par défaut est spécifié par AuthenticationScheme.
Ce gestionnaire d’authentification prend en charge Kerberos sur les serveurs Windows et Linux.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddNegotiate (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, Action<Microsoft.AspNetCore.Authentication.Negotiate.NegotiateOptions> configureOptions);
static member AddNegotiate : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * Action<Microsoft.AspNetCore.Authentication.Negotiate.NegotiateOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddNegotiate (builder As AuthenticationBuilder, configureOptions As Action(Of NegotiateOptions)) As AuthenticationBuilder
Paramètres
- builder
- AuthenticationBuilder
L’AuthenticationBuilderopérateur
- configureOptions
- Action<NegotiateOptions>
Permet de configurer le gestionnaire d’authentification.
Retours
Générateur d’origine.
S’applique à
AddNegotiate(AuthenticationBuilder, String, Action<NegotiateOptions>)
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
Configure le pour utiliser l’authentification AuthenticationBuilder Negotiate (également appelée Windows, Kerberos ou NTLM) à l’aide du schéma d’authentification spécifié.
Ce gestionnaire d’authentification prend en charge Kerberos sur les serveurs Windows et Linux.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddNegotiate (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, Action<Microsoft.AspNetCore.Authentication.Negotiate.NegotiateOptions> configureOptions);
static member AddNegotiate : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * Action<Microsoft.AspNetCore.Authentication.Negotiate.NegotiateOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddNegotiate (builder As AuthenticationBuilder, authenticationScheme As String, configureOptions As Action(Of NegotiateOptions)) As AuthenticationBuilder
Paramètres
- builder
- AuthenticationBuilder
L’AuthenticationBuilderopérateur
- authenticationScheme
- String
Nom du schéma utilisé pour identifier le gestionnaire d’authentification en interne.
- configureOptions
- Action<NegotiateOptions>
Permet de configurer le gestionnaire d’authentification.
Retours
Générateur d’origine.
S’applique à
AddNegotiate(AuthenticationBuilder, String, String, Action<NegotiateOptions>)
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
- Source:
- NegotiateExtensions.cs
Configure le pour utiliser l’authentification AuthenticationBuilder Negotiate (également appelée Windows, Kerberos ou NTLM) à l’aide du schéma d’authentification spécifié.
Ce gestionnaire d’authentification prend en charge Kerberos sur les serveurs Windows et Linux.
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddNegotiate (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, string displayName, Action<Microsoft.AspNetCore.Authentication.Negotiate.NegotiateOptions> configureOptions);
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddNegotiate (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, string? displayName, Action<Microsoft.AspNetCore.Authentication.Negotiate.NegotiateOptions> configureOptions);
static member AddNegotiate : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * string * Action<Microsoft.AspNetCore.Authentication.Negotiate.NegotiateOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddNegotiate (builder As AuthenticationBuilder, authenticationScheme As String, displayName As String, configureOptions As Action(Of NegotiateOptions)) As AuthenticationBuilder
Paramètres
- builder
- AuthenticationBuilder
L’AuthenticationBuilderopérateur
- authenticationScheme
- String
Nom du schéma utilisé pour identifier le gestionnaire d’authentification en interne.
- displayName
- String
Nom affiché aux utilisateurs lors de la sélection d’un gestionnaire d’authentification. La valeur par défaut est Null pour empêcher l’affichage.
- configureOptions
- Action<NegotiateOptions>
Permet de configurer le gestionnaire d’authentification.
Retours
Générateur d’origine.