Перейти к содержимому
Abblix
Эта страница ещё не переведена.

RequestedClaims Class

Represents claims requested for inclusion in the UserInfo response and ID Token in OAuth2 or OpenID Connect authentication flows.

C#
public record RequestedClaims : System.IEquatable<Abblix.Oidc.Server.Model.RequestedClaims>

Inheritance System.Object → RequestedClaims

Implements System.IEquatable<RequestedClaims>

Properties

RequestedClaims.IdToken Property

A collection of claims requested to be included in the ID Token. Similar to UserInfo, each entry in the dictionary specifies a claim and its associated details, including essentiality and value constraints.

C#
public System.Collections.Generic.Dictionary<string,Abblix.Oidc.Server.Model.RequestedClaimDetails>? IdToken { get; init; }

Property Value

System.Collections.Generic.Dictionary<System.String,RequestedClaimDetails>

RequestedClaims.UserInfo Property

A collection of claims requested to be included in the UserInfo response. Each entry in the dictionary represents a claim with its corresponding details, such as whether the claim is essential and specific value requirements.

C#
public System.Collections.Generic.Dictionary<string,Abblix.Oidc.Server.Model.RequestedClaimDetails>? UserInfo { get; init; }

Property Value

System.Collections.Generic.Dictionary<System.String,RequestedClaimDetails>