Show / Hide Table of Contents

Class OpenIddictServerEvents.HandleRevocationRequestContext

Represents an event called for each validated revocation request to allow the user code to decide how the request should be handled.

Inheritance
System.Object
OpenIddict.Server.OpenIddictServerEvents.BaseContext
OpenIddict.Server.OpenIddictServerEvents.BaseRequestContext
OpenIddict.Server.OpenIddictServerEvents.BaseValidatingContext
OpenIddictServerEvents.HandleRevocationRequestContext
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: OpenIddict.Server
Assembly: cs.temp.dll.dll
Syntax
public class HandleRevocationRequestContext : OpenIddictServerEvents.BaseValidatingContext

Constructors

HandleRevocationRequestContext(OpenIddictServerTransaction)

Creates a new instance of the OpenIddictServerEvents.HandleRevocationRequestContext class.

Declaration
public HandleRevocationRequestContext(OpenIddictServerTransaction transaction)
Parameters
Type Name Description
OpenIddictServerTransaction transaction

Properties

Claims

Gets the authentication ticket.

Declaration
public IDictionary<string, object> Claims { get; }
Property Value
Type Description
IDictionary<System.String, System.Object>

Principal

Gets or sets the security principal extracted from the revoked token.

Declaration
public ClaimsPrincipal? Principal { get; set; }
Property Value
Type Description
System.Nullable<ClaimsPrincipal>

Request

Gets or sets the request.

Declaration
public OpenIddictRequest Request { get; set; }
Property Value
Type Description
OpenIddictRequest
In This Article
Back to top Generated by DocFX