Skip to content
Abblix

IScopesAndClaimsProvider Interface

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

C#
public interface IScopesAndClaimsProvider

Derived
ScopesAndClaimsProvider

Properties

IScopesAndClaimsProvider.ClaimsSupported Property

Lists the claims supported by the OpenID Provider.

C#
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.

C#
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.

C#
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.

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

Property Value

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