Table of Contents

Class TokenRevokedSuccessEvent

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

Event for successful token revocation

public class TokenRevokedSuccessEvent : Event
Inheritance
TokenRevokedSuccessEvent
Inherited Members

Constructors

TokenRevokedSuccessEvent(TokenRevocationRequestValidationResult, Client)

Initializes a new instance of the TokenRevokedSuccessEvent class.

public TokenRevokedSuccessEvent(TokenRevocationRequestValidationResult requestResult, Client client)

Parameters

requestResult TokenRevocationRequestValidationResult

The request result.

client Client

The client.

See Also

Properties

ClientId

Gets or sets the client identifier.

public string ClientId { get; set; }

Property Value

string

The client identifier.

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

Token

Gets or sets the token.

public string Token { get; set; }

Property Value

string

The token.

See Also

TokenType

Gets or sets the type of the token.

public string TokenType { get; set; }

Property Value

string

The type of the token.

See Also

See Also