IntrospectionRequest Class
Abblix.Oidc.Server
Abblix.Oidc.Server.Model
IntrospectionRequest Class
Parameters of an OAuth 2.0 token introspection request (RFC 7662 §2.1) sent to the
introspection_endpoint, used by protected resources to determine the active state and metadata
of a token. Client authentication is required and is supplied alongside this payload.
public record IntrospectionRequest : System.IEquatable<Abblix.Oidc.Server.Model.IntrospectionRequest>
Inheritance System.Object → IntrospectionRequest
Implements System.IEquatable<IntrospectionRequest>
Properties
IntrospectionRequest.Token Property
The token parameter (RFC 7662 §2.1): the token string for which the client is requesting
introspection metadata. Required.
public string Token { get; set; }
Property Value
IntrospectionRequest.TokenTypeHint Property
The optional token_type_hint (RFC 7662 §2.1) telling the server which token type to try first,
for example access_token or refresh_token. The server may still inspect other token types.
public string? TokenTypeHint { get; set; }