Skip to main content

IScopesAndClaimsProvider Interface

Abblix.Oidc.Server

Abblix.Oidc.Server.Endpoints.Configuration.Interfaces

IScopesAndClaimsProvider Interface

Provides metadata about supported scopes, claims, grants, and subject types for OpenID Connect discovery.

public interface IScopesAndClaimsProvider

Derived
ScopesAndClaimsProvider

Properties

IScopesAndClaimsProvider.ClaimsSupported Property

Lists the claims supported by the OpenID Provider.

System.Collections.Generic.IEnumerable<string> ClaimsSupported { get; }

Property Value

System.Collections.Generic.IEnumerable<System.String>

IScopesAndClaimsProvider.GrantTypesSupported Property

Lists the grant types supported by the OpenID Provider.

System.Collections.Generic.IEnumerable<string> GrantTypesSupported { get; }

Property Value

System.Collections.Generic.IEnumerable<System.String>

IScopesAndClaimsProvider.ScopesSupported Property

Lists the scopes supported by the OpenID Provider.

System.Collections.Generic.IEnumerable<string> ScopesSupported { get; }

Property Value

System.Collections.Generic.IEnumerable<System.String>

IScopesAndClaimsProvider.SubjectTypesSupported Property

Lists the subject types supported by the OpenID Provider.

System.Collections.Generic.IEnumerable<string> SubjectTypesSupported { get; }

Property Value

System.Collections.Generic.IEnumerable<System.String>