NegotiateExtensions.AddNegotiate 메서드

정의

오버로드

AddNegotiate(AuthenticationBuilder)

AuthenticationBuilder 기본 체계 AuthenticationScheme를 사용하여 Negotiate(Windows, Kerberos 또는 NTLM이라고도 함) 인증을 사용하도록 을 구성합니다.

이 인증 처리기는 Windows 및 Linux 서버에서 Kerberos를 지원합니다.

AddNegotiate(AuthenticationBuilder, Action<NegotiateOptions>)

기본 체계를 AuthenticationBuilder 사용하여 Negotiate(Windows, Kerberos 또는 NTLM이라고도 함) 인증을 사용하도록 을 구성합니다. 기본 구성표는 로 AuthenticationScheme지정됩니다.

이 인증 처리기는 Windows 및 Linux 서버에서 Kerberos를 지원합니다.

AddNegotiate(AuthenticationBuilder, String, Action<NegotiateOptions>)

지정된 인증 체계를 AuthenticationBuilder 사용하여 Negotiate(Windows, Kerberos 또는 NTLM이라고도 함) 인증을 사용하도록 을 구성합니다.

이 인증 처리기는 Windows 및 Linux 서버에서 Kerberos를 지원합니다.

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

지정된 인증 체계를 AuthenticationBuilder 사용하여 Negotiate(Windows, Kerberos 또는 NTLM이라고도 함) 인증을 사용하도록 을 구성합니다.

이 인증 처리기는 Windows 및 Linux 서버에서 Kerberos를 지원합니다.

AddNegotiate(AuthenticationBuilder)

AuthenticationBuilder 기본 체계 AuthenticationScheme를 사용하여 Negotiate(Windows, Kerberos 또는 NTLM이라고도 함) 인증을 사용하도록 을 구성합니다.

이 인증 처리기는 Windows 및 Linux 서버에서 Kerberos를 지원합니다.

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

매개 변수

반환

원래 작성기입니다.

적용 대상

AddNegotiate(AuthenticationBuilder, Action<NegotiateOptions>)

기본 체계를 AuthenticationBuilder 사용하여 Negotiate(Windows, Kerberos 또는 NTLM이라고도 함) 인증을 사용하도록 을 구성합니다. 기본 구성표는 로 AuthenticationScheme지정됩니다.

이 인증 처리기는 Windows 및 Linux 서버에서 Kerberos를 지원합니다.

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

매개 변수

configureOptions
Action<NegotiateOptions>

인증 처리기를 구성할 수 있습니다.

반환

원래 작성기입니다.

적용 대상

AddNegotiate(AuthenticationBuilder, String, Action<NegotiateOptions>)

지정된 인증 체계를 AuthenticationBuilder 사용하여 Negotiate(Windows, Kerberos 또는 NTLM이라고도 함) 인증을 사용하도록 을 구성합니다.

이 인증 처리기는 Windows 및 Linux 서버에서 Kerberos를 지원합니다.

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

매개 변수

authenticationScheme
String

내부적으로 인증 처리기를 식별하는 데 사용되는 체계 이름입니다.

configureOptions
Action<NegotiateOptions>

인증 처리기를 구성할 수 있습니다.

반환

원래 작성기입니다.

적용 대상

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

지정된 인증 체계를 AuthenticationBuilder 사용하여 Negotiate(Windows, Kerberos 또는 NTLM이라고도 함) 인증을 사용하도록 을 구성합니다.

이 인증 처리기는 Windows 및 Linux 서버에서 Kerberos를 지원합니다.

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

매개 변수

authenticationScheme
String

내부적으로 인증 처리기를 식별하는 데 사용되는 체계 이름입니다.

displayName
String

인증 처리기를 선택할 때 사용자에게 표시되는 이름입니다. 기본값은 null이 표시되지 않도록 합니다.

configureOptions
Action<NegotiateOptions>

인증 처리기를 구성할 수 있습니다.

반환

원래 작성기입니다.

적용 대상