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

SubjectTypes Class

Represents subject types used in OpenID Connect.

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

C#
public const string Pairwise = "pairwise";

Field Value

System.String

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.

C#
public const string Public = "public";

Field Value

System.String