OpenIdConnectExtensions.AddOpenIdConnect 메서드

정의

오버로드

AddOpenIdConnect(AuthenticationBuilder)

기본 체계를 AuthenticationBuilder 사용하여 OpenId Connect 인증을 에 추가합니다. 기본 구성표는 로 AuthenticationScheme지정됩니다.

OpenID Connect는 OAuth 2.0 프로토콜 위에 있는 ID 계층입니다. 이를 통해 클라이언트는 인증된 세션 및 최종 사용자에 대한 정보를 요청하고 받을 수 있습니다.

AddOpenIdConnect(AuthenticationBuilder, Action<OpenIdConnectOptions>)

기본 체계를 AuthenticationBuilder 사용하여 OpenId Connect 인증을 에 추가합니다. 기본 구성표는 로 AuthenticationScheme지정됩니다.

OpenID Connect는 OAuth 2.0 프로토콜 위에 있는 ID 계층입니다. 이를 통해 클라이언트는 인증된 세션 및 최종 사용자에 대한 정보를 요청하고 받을 수 있습니다.

AddOpenIdConnect(AuthenticationBuilder, String, Action<OpenIdConnectOptions>)

지정한 체계를 AuthenticationBuilder 사용하여 OpenId Connect 인증을 에 추가합니다.

OpenID Connect는 OAuth 2.0 프로토콜 위에 있는 ID 계층입니다. 이를 통해 클라이언트는 인증된 세션 및 최종 사용자에 대한 정보를 요청하고 받을 수 있습니다.

AddOpenIdConnect(AuthenticationBuilder, String, String, Action<OpenIdConnectOptions>)

지정한 체계를 AuthenticationBuilder 사용하여 OpenId Connect 인증을 에 추가합니다.

OpenID Connect는 OAuth 2.0 프로토콜 위에 있는 ID 계층입니다. 이를 통해 클라이언트는 인증된 세션 및 최종 사용자에 대한 정보를 요청하고 받을 수 있습니다.

AddOpenIdConnect(AuthenticationBuilder)

기본 체계를 AuthenticationBuilder 사용하여 OpenId Connect 인증을 에 추가합니다. 기본 구성표는 로 AuthenticationScheme지정됩니다.

OpenID Connect는 OAuth 2.0 프로토콜 위에 있는 ID 계층입니다. 이를 통해 클라이언트는 인증된 세션 및 최종 사용자에 대한 정보를 요청하고 받을 수 있습니다.

public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder);
static member AddOpenIdConnect : Microsoft.AspNetCore.Authentication.AuthenticationBuilder -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOpenIdConnect (builder As AuthenticationBuilder) As AuthenticationBuilder

매개 변수

반환

작업이 완료된 후 에 대한 참조 builder 입니다.

적용 대상

AddOpenIdConnect(AuthenticationBuilder, Action<OpenIdConnectOptions>)

기본 체계를 AuthenticationBuilder 사용하여 OpenId Connect 인증을 에 추가합니다. 기본 구성표는 로 AuthenticationScheme지정됩니다.

OpenID Connect는 OAuth 2.0 프로토콜 위에 있는 ID 계층입니다. 이를 통해 클라이언트는 인증된 세션 및 최종 사용자에 대한 정보를 요청하고 받을 수 있습니다.

public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> configureOptions);
static member AddOpenIdConnect : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOpenIdConnect (builder As AuthenticationBuilder, configureOptions As Action(Of OpenIdConnectOptions)) As AuthenticationBuilder

매개 변수

configureOptions
Action<OpenIdConnectOptions>

를 구성할 OpenIdConnectOptions대리자입니다.

반환

작업이 완료된 후 에 대한 참조 builder 입니다.

적용 대상

AddOpenIdConnect(AuthenticationBuilder, String, Action<OpenIdConnectOptions>)

지정한 체계를 AuthenticationBuilder 사용하여 OpenId Connect 인증을 에 추가합니다.

OpenID Connect는 OAuth 2.0 프로토콜 위에 있는 ID 계층입니다. 이를 통해 클라이언트는 인증된 세션 및 최종 사용자에 대한 정보를 요청하고 받을 수 있습니다.

public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> configureOptions);
static member AddOpenIdConnect : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOpenIdConnect (builder As AuthenticationBuilder, authenticationScheme As String, configureOptions As Action(Of OpenIdConnectOptions)) As AuthenticationBuilder

매개 변수

authenticationScheme
String

인증 체계입니다.

configureOptions
Action<OpenIdConnectOptions>

를 구성할 OpenIdConnectOptions대리자입니다.

반환

작업이 완료된 후 에 대한 참조 builder 입니다.

적용 대상

AddOpenIdConnect(AuthenticationBuilder, String, String, Action<OpenIdConnectOptions>)

지정한 체계를 AuthenticationBuilder 사용하여 OpenId Connect 인증을 에 추가합니다.

OpenID Connect는 OAuth 2.0 프로토콜 위에 있는 ID 계층입니다. 이를 통해 클라이언트는 인증된 세션 및 최종 사용자에 대한 정보를 요청하고 받을 수 있습니다.

public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, string displayName, Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> configureOptions);
public static Microsoft.AspNetCore.Authentication.AuthenticationBuilder AddOpenIdConnect (this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder, string authenticationScheme, string? displayName, Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> configureOptions);
static member AddOpenIdConnect : Microsoft.AspNetCore.Authentication.AuthenticationBuilder * string * string * Action<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions> -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder
<Extension()>
Public Function AddOpenIdConnect (builder As AuthenticationBuilder, authenticationScheme As String, displayName As String, configureOptions As Action(Of OpenIdConnectOptions)) As AuthenticationBuilder

매개 변수

authenticationScheme
String

인증 체계입니다.

displayName
String

인증 처리기의 표시 이름입니다.

configureOptions
Action<OpenIdConnectOptions>

를 구성할 OpenIdConnectOptions대리자입니다.

반환

작업이 완료된 후 에 대한 참조 builder 입니다.

적용 대상