Class IntrospectionRequestValidationResult
- Namespace
- Duende.IdentityServer.Validation
- Assembly
- Duende.IdentityServer.dll
Validation result for introspection request
public class IntrospectionRequestValidationResult : ValidationResult
- Inheritance
-
IntrospectionRequestValidationResult
- Inherited Members
Constructors
IntrospectionRequestValidationResult()
public IntrospectionRequestValidationResult()
- See Also
Properties
Api
Gets or sets the API.
public ApiResource Api { get; set; }
Property Value
- ApiResource
The API.
- See Also
Claims
Gets or sets the claims.
public IEnumerable<Claim> Claims { get; set; }
Property Value
- IEnumerable<Claim>
The claims.
- See Also
Client
Gets or sets the client.
public Client Client { get; set; }
Property Value
- Client
The client.
- See Also
IsActive
Gets or sets a value indicating whether the token is active.
public bool IsActive { get; set; }
Property Value
- bool
true
if the token is active; otherwise,false
.
- See Also
Parameters
Gets or sets the request parameters.
public NameValueCollection Parameters { get; set; }
Property Value
- NameValueCollection
The parameters.
- See Also
Token
Gets or sets the token.
public string Token { get; set; }
Property Value
- string
The token.
- See Also