Aller au contenu
Abblix
Cette page n'a pas encore été traduite.

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.

C#
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.

C#
public string Token { get; set; }

Property Value

System.String

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.

C#
public string? TokenTypeHint { get; set; }

Property Value

System.String