OpenIdConnectExtensions Class

Definition

Extension methods to configure OpenIdConnect authentication.

public static class OpenIdConnectExtensions
type OpenIdConnectExtensions = class
Public Module OpenIdConnectExtensions
Inheritance
OpenIdConnectExtensions

Methods

AddOpenIdConnect(AuthenticationBuilder)

Adds OpenId Connect authentication to AuthenticationBuilder using the default scheme. The default scheme is specified by AuthenticationScheme.

OpenID Connect is an identity layer on top of the OAuth 2.0 protocol. It allows clients to request and receive information about authenticated sessions and end-users.

AddOpenIdConnect(AuthenticationBuilder, Action<OpenIdConnectOptions>)

Adds OpenId Connect authentication to AuthenticationBuilder using the default scheme. The default scheme is specified by AuthenticationScheme.

OpenID Connect is an identity layer on top of the OAuth 2.0 protocol. It allows clients to request and receive information about authenticated sessions and end-users.

AddOpenIdConnect(AuthenticationBuilder, String, Action<OpenIdConnectOptions>)

Adds OpenId Connect authentication to AuthenticationBuilder using the specified scheme.

OpenID Connect is an identity layer on top of the OAuth 2.0 protocol. It allows clients to request and receive information about authenticated sessions and end-users.

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

Adds OpenId Connect authentication to AuthenticationBuilder using the specified scheme.

OpenID Connect is an identity layer on top of the OAuth 2.0 protocol. It allows clients to request and receive information about authenticated sessions and end-users.

Applies to