Table of Contents

Class TokenIntrospectionSuccessEvent

Namespace
Duende.IdentityServer.Events
Assembly
Duende.IdentityServer.dll

Event for successful token introspection

public class TokenIntrospectionSuccessEvent : Event
Inheritance
TokenIntrospectionSuccessEvent
Inherited Members

Constructors

TokenIntrospectionSuccessEvent(IntrospectionRequestValidationResult)

Initializes a new instance of the TokenIntrospectionSuccessEvent class.

public TokenIntrospectionSuccessEvent(IntrospectionRequestValidationResult result)

Parameters

result IntrospectionRequestValidationResult

The result.

See Also

Properties

ApiName

Gets or sets the name of the API.

public string ApiName { get; set; }

Property Value

string

The name of the API.

See Also

ClaimTypes

Gets or sets the claim types.

public IEnumerable<string> ClaimTypes { get; set; }

Property Value

IEnumerable<string>

The claim types.

See Also

ClientName

Gets or sets the name of the client.

public string ClientName { get; set; }

Property Value

string

The name of the client.

See Also

IsActive

Gets or sets a value indicating whether this instance is active.

public bool IsActive { get; set; }

Property Value

bool

true if this instance is active; otherwise, false.

See Also

Token

Gets or sets the token.

public string Token { get; set; }

Property Value

string

The token.

See Also

TokenScopes

Gets or sets the token scopes.

public IEnumerable<string> TokenScopes { get; set; }

Property Value

IEnumerable<string>

The token scopes.

See Also

See Also