Show / Hide Table of Contents

Class OpenIddictValidationEvents.HandleIntrospectionResponseContext

Represents an event called for each validated introspection response.

Inheritance
System.Object
OpenIddict.Validation.OpenIddictValidationEvents.BaseContext
OpenIddict.Validation.OpenIddictValidationEvents.BaseRequestContext
OpenIddict.Validation.OpenIddictValidationEvents.BaseValidatingContext
OpenIddict.Validation.OpenIddictValidationEvents.BaseExternalContext
OpenIddictValidationEvents.HandleIntrospectionResponseContext
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.Validation
Assembly: cs.temp.dll.dll
Syntax
public class HandleIntrospectionResponseContext : OpenIddictValidationEvents.BaseExternalContext

Constructors

HandleIntrospectionResponseContext(OpenIddictValidationTransaction)

Creates a new instance of the OpenIddictValidationEvents.HandleIntrospectionResponseContext class.

Declaration
public HandleIntrospectionResponseContext(OpenIddictValidationTransaction transaction)
Parameters
Type Name Description
OpenIddictValidationTransaction transaction

Properties

Principal

Gets or sets the principal containing the claims resolved from the introspection response.

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

Response

Gets or sets the response.

Declaration
public OpenIddictResponse Response { get; set; }
Property Value
Type Description
OpenIddictResponse

Token

Gets or sets the token sent to the introspection endpoint.

Declaration
public string Token { get; set; }
Property Value
Type Description
System.String

TokenType

Gets or sets the token type sent to the introspection endpoint.

Declaration
public string TokenType { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top Generated by DocFX