Class ClientSecretValidationResult
- Namespace
- Duende.IdentityServer.Validation
- Assembly
- Duende.IdentityServer.dll
Validation result for client validation
public class ClientSecretValidationResult : ValidationResult
- Inheritance
-
ClientSecretValidationResult
- Inherited Members
Constructors
ClientSecretValidationResult()
public ClientSecretValidationResult()
Properties
Client
Gets or sets the client.
public Client? Client { get; set; }
Property Value
- Client
The client.
Confirmation
Gets or sets the value of the confirmation method (will become the cnf claim). Must be a JSON object.
public string? Confirmation { get; set; }
Property Value
- string
The confirmation.
Secret
Gets or sets the secret used to authenticate the client.
public ParsedSecret? Secret { get; set; }
Property Value
- ParsedSecret
The secret.