SubjectTypes Class
Abblix.Oidc.Server
Abblix.Oidc.Server.Common.Constants
SubjectTypes Class
Represents subject types used in OpenID Connect.
public static class SubjectTypes
Inheritance System.Object → SubjectTypes
Fields
SubjectTypes.Pairwise Field
The "pairwise" subject type indicates that the subject identifier is a pairwise identifier, which means that it is unique to a specific client, enhancing user privacy.
public const string Pairwise = "pairwise";
Field Value
SubjectTypes.Public Field
The "public" subject type indicates that the subject identifier is a public identifier, which means that it can be used across multiple clients and should not be tied to a specific client.
public const string Public = "public";