Class AuthenticationRequest.ClaimRequest
Claim request.
Inherited Members
Namespace: ComponentSpace.OpenID.Messages
Assembly: ComponentSpace.OpenID.dll
Syntax
public class AuthenticationRequest.ClaimRequest
Properties
Essential
Flag indicating whether the requested claim is essential.
Declaration
[JsonPropertyName("essential")]
public bool? Essential { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
Name
The requested claim's name.
Declaration
[JsonIgnore]
public string? Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Value
The requested claim's required value.
Declaration
[JsonPropertyName("value")]
public string? Value { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Values
The requested claim's possible values.
Declaration
[JsonPropertyName("values")]
public string[]? Values { get; set; }
Property Value
| Type | Description |
|---|---|
| string[] |