NegotiateExtensions.AddNegotiate Método

Definição

Sobrecargas

AddNegotiate(AuthenticationBuilder)

Configura o para usar a AuthenticationBuilder autenticação Negotiate (também conhecida como Windows, Kerberos ou NTLM) usando o esquema padrão de AuthenticationScheme.

Esse manipulador de autenticação dá suporte a Kerberos em servidores Windows e Linux.

AddNegotiate(AuthenticationBuilder, Action<NegotiateOptions>)

Configura o para usar a AuthenticationBuilder autenticação Negotiate (também conhecida como Windows, Kerberos ou NTLM) usando o esquema padrão. O esquema padrão é especificado por AuthenticationScheme.

Esse manipulador de autenticação dá suporte a Kerberos em servidores Windows e Linux.

AddNegotiate(AuthenticationBuilder, String, Action<NegotiateOptions>)

Configura o para usar a AuthenticationBuilder autenticação Negotiate (também conhecida como Windows, Kerberos ou NTLM) usando o esquema de autenticação especificado.

Esse manipulador de autenticação dá suporte a Kerberos em servidores Windows e Linux.

AddNegotiate(AuthenticationBuilder, String, String, Action<NegotiateOptions>)

Configura o para usar a AuthenticationBuilder autenticação Negotiate (também conhecida como Windows, Kerberos ou NTLM) usando o esquema de autenticação especificado.

Esse manipulador de autenticação dá suporte a Kerberos em servidores Windows e Linux.

AddNegotiate(AuthenticationBuilder)

Configura o para usar a AuthenticationBuilder autenticação Negotiate (também conhecida como Windows, Kerberos ou NTLM) usando o esquema padrão de AuthenticationScheme.

Esse manipulador de autenticação dá suporte a Kerberos em servidores Windows e 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

Parâmetros

Retornos

O construtor original.

Aplica-se a

AddNegotiate(AuthenticationBuilder, Action<NegotiateOptions>)

Configura o para usar a AuthenticationBuilder autenticação Negotiate (também conhecida como Windows, Kerberos ou NTLM) usando o esquema padrão. O esquema padrão é especificado por AuthenticationScheme.

Esse manipulador de autenticação dá suporte a Kerberos em servidores Windows e 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

Parâmetros

configureOptions
Action<NegotiateOptions>

Permite configurar o manipulador de autenticação.

Retornos

O construtor original.

Aplica-se a

AddNegotiate(AuthenticationBuilder, String, Action<NegotiateOptions>)

Configura o para usar a AuthenticationBuilder autenticação Negotiate (também conhecida como Windows, Kerberos ou NTLM) usando o esquema de autenticação especificado.

Esse manipulador de autenticação dá suporte a Kerberos em servidores Windows e 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

Parâmetros

authenticationScheme
String

O nome do esquema usado para identificar o manipulador de autenticação internamente.

configureOptions
Action<NegotiateOptions>

Permite configurar o manipulador de autenticação.

Retornos

O construtor original.

Aplica-se a

AddNegotiate(AuthenticationBuilder, String, String, Action<NegotiateOptions>)

Configura o para usar a AuthenticationBuilder autenticação Negotiate (também conhecida como Windows, Kerberos ou NTLM) usando o esquema de autenticação especificado.

Esse manipulador de autenticação dá suporte a Kerberos em servidores Windows e 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

Parâmetros

authenticationScheme
String

O nome do esquema usado para identificar o manipulador de autenticação internamente.

displayName
String

O nome exibido aos usuários ao selecionar um manipulador de autenticação. O padrão é nulo para impedir que isso seja exibido.

configureOptions
Action<NegotiateOptions>

Permite configurar o manipulador de autenticação.

Retornos

O construtor original.

Aplica-se a