NegotiateExtensions.AddNegotiate Método

Definición

Sobrecargas

AddNegotiate(AuthenticationBuilder)

Configura para usar la AuthenticationBuilder autenticación Negotiate (también conocida como Windows, Kerberos o NTLM) mediante el esquema predeterminado de AuthenticationScheme.

Este controlador de autenticación admite Kerberos en servidores Windows y Linux.

AddNegotiate(AuthenticationBuilder, Action<NegotiateOptions>)

Configura para usar la AuthenticationBuilder autenticación Negotiate (también conocida como Windows, Kerberos o NTLM) mediante el esquema predeterminado. El esquema predeterminado se especifica mediante AuthenticationScheme.

Este controlador de autenticación admite Kerberos en servidores Windows y Linux.

AddNegotiate(AuthenticationBuilder, String, Action<NegotiateOptions>)

Configura para usar la AuthenticationBuilder autenticación Negotiate (también conocida como Windows, Kerberos o NTLM) mediante el esquema de autenticación especificado.

Este controlador de autenticación admite Kerberos en servidores Windows y Linux.

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

Configura para usar la AuthenticationBuilder autenticación Negotiate (también conocida como Windows, Kerberos o NTLM) mediante el esquema de autenticación especificado.

Este controlador de autenticación admite Kerberos en servidores Windows y Linux.

AddNegotiate(AuthenticationBuilder)

Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs

Configura para usar la AuthenticationBuilder autenticación Negotiate (también conocida como Windows, Kerberos o NTLM) mediante el esquema predeterminado de AuthenticationScheme.

Este controlador de autenticación admite Kerberos en servidores Windows y 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

Devoluciones

El generador original.

Se aplica a

AddNegotiate(AuthenticationBuilder, Action<NegotiateOptions>)

Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs

Configura para usar la AuthenticationBuilder autenticación Negotiate (también conocida como Windows, Kerberos o NTLM) mediante el esquema predeterminado. El esquema predeterminado se especifica mediante AuthenticationScheme.

Este controlador de autenticación admite Kerberos en servidores Windows y 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 el controlador de autenticación.

Devoluciones

El generador original.

Se aplica a

AddNegotiate(AuthenticationBuilder, String, Action<NegotiateOptions>)

Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs

Configura para usar la AuthenticationBuilder autenticación Negotiate (también conocida como Windows, Kerberos o NTLM) mediante el esquema de autenticación especificado.

Este controlador de autenticación admite Kerberos en servidores Windows y 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

Nombre del esquema usado para identificar el controlador de autenticación internamente.

configureOptions
Action<NegotiateOptions>

Permite configurar el controlador de autenticación.

Devoluciones

El generador original.

Se aplica a

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

Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs
Source:
NegotiateExtensions.cs

Configura para usar la AuthenticationBuilder autenticación Negotiate (también conocida como Windows, Kerberos o NTLM) mediante el esquema de autenticación especificado.

Este controlador de autenticación admite Kerberos en servidores Windows y 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

Nombre del esquema usado para identificar el controlador de autenticación internamente.

displayName
String

Nombre que se muestra a los usuarios al seleccionar un controlador de autenticación. El valor predeterminado es NULL para evitar que esto se muestre.

configureOptions
Action<NegotiateOptions>

Permite configurar el controlador de autenticación.

Devoluciones

El generador original.

Se aplica a