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