Skip to main content

RevocationRequest Class

Abblix.Oidc.Server

Abblix.Oidc.Server.Model

RevocationRequest Class

Parameters of an OAuth 2.0 token revocation request (RFC 7009 §2.1) sent to the revocation_endpoint. Client authentication is required and is supplied alongside this payload.

public record RevocationRequest : System.IEquatable<Abblix.Oidc.Server.Model.RevocationRequest>

Inheritance System.Object → RevocationRequest

Implements System.IEquatable<RevocationRequest>

Properties

RevocationRequest.Token Property

The token parameter (RFC 7009 §2.1): the access token or refresh token string the client is asking the authorization server to revoke. Required.

public string Token { get; set; }

Property Value

System.String

RevocationRequest.TokenTypeHint Property

The optional token_type_hint (RFC 7009 §2.1) advising whether Token is an access_token or refresh_token, allowing the server to look it up faster.

public string? TokenTypeHint { get; set; }

Property Value

System.String