NegotiateExtensions.AddNegotiate Metoda

Definice

Přetížení

AddNegotiate(AuthenticationBuilder)

Nakonfiguruje AuthenticationBuilder ověřování Negotiate (označované také jako Windows, Kerberos nebo NTLM) pomocí výchozího schématu z AuthenticationScheme.

Tato obslužná rutina ověřování podporuje protokol Kerberos na serverech s Windows a Linuxem.

AddNegotiate(AuthenticationBuilder, Action<NegotiateOptions>)

Nakonfiguruje AuthenticationBuilder ověřování Negotiate (označované také jako Windows, Kerberos nebo NTLM) pomocí výchozího schématu. Výchozí schéma je určeno parametrem AuthenticationScheme.

Tato obslužná rutina ověřování podporuje protokol Kerberos na serverech s Windows a Linuxem.

AddNegotiate(AuthenticationBuilder, String, Action<NegotiateOptions>)

Nakonfiguruje AuthenticationBuilder ověřování Negotiate (označované také jako Windows, Kerberos nebo NTLM) pomocí zadaného schématu ověřování.

Tato obslužná rutina ověřování podporuje protokol Kerberos na serverech s Windows a Linuxem.

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

Nakonfiguruje AuthenticationBuilder ověřování Negotiate (označované také jako Windows, Kerberos nebo NTLM) pomocí zadaného schématu ověřování.

Tato obslužná rutina ověřování podporuje protokol Kerberos na serverech s Windows a Linuxem.

AddNegotiate(AuthenticationBuilder)

Nakonfiguruje AuthenticationBuilder ověřování Negotiate (označované také jako Windows, Kerberos nebo NTLM) pomocí výchozího schématu z AuthenticationScheme.

Tato obslužná rutina ověřování podporuje protokol Kerberos na serverech s Windows a Linuxem.

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

Parametry

Návraty

Původní tvůrce.

Platí pro

AddNegotiate(AuthenticationBuilder, Action<NegotiateOptions>)

Nakonfiguruje AuthenticationBuilder ověřování Negotiate (označované také jako Windows, Kerberos nebo NTLM) pomocí výchozího schématu. Výchozí schéma je určeno parametrem AuthenticationScheme.

Tato obslužná rutina ověřování podporuje protokol Kerberos na serverech s Windows a Linuxem.

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

Parametry

configureOptions
Action<NegotiateOptions>

Umožňuje konfiguraci obslužné rutiny ověřování.

Návraty

Původní tvůrce.

Platí pro

AddNegotiate(AuthenticationBuilder, String, Action<NegotiateOptions>)

Nakonfiguruje AuthenticationBuilder ověřování Negotiate (označované také jako Windows, Kerberos nebo NTLM) pomocí zadaného schématu ověřování.

Tato obslužná rutina ověřování podporuje protokol Kerberos na serverech s Windows a Linuxem.

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

Parametry

authenticationScheme
String

Název schématu použitý k interní identifikaci obslužné rutiny ověřování.

configureOptions
Action<NegotiateOptions>

Umožňuje konfiguraci obslužné rutiny ověřování.

Návraty

Původní tvůrce.

Platí pro

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

Nakonfiguruje AuthenticationBuilder ověřování Negotiate (označované také jako Windows, Kerberos nebo NTLM) pomocí zadaného schématu ověřování.

Tato obslužná rutina ověřování podporuje protokol Kerberos na serverech s Windows a Linuxem.

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

Parametry

authenticationScheme
String

Název schématu použitý k interní identifikaci obslužné rutiny ověřování.

displayName
String

Název, který se zobrazí uživatelům při výběru obslužné rutiny ověřování. Výchozí hodnota je null, aby se zabránilo zobrazení.

configureOptions
Action<NegotiateOptions>

Umožňuje konfiguraci obslužné rutiny ověřování.

Návraty

Původní tvůrce.

Platí pro