Table of Contents

Class TokenIssuedSuccessEvent

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

Event for successful token issuance

public class TokenIssuedSuccessEvent : Event
Inheritance
TokenIssuedSuccessEvent
Inherited Members

Constructors

TokenIssuedSuccessEvent()

Initializes a new instance of the TokenIssuedSuccessEvent class.

protected TokenIssuedSuccessEvent()
See Also

TokenIssuedSuccessEvent(AuthorizeResponse)

Initializes a new instance of the TokenIssuedSuccessEvent class.

public TokenIssuedSuccessEvent(AuthorizeResponse response)

Parameters

response AuthorizeResponse

The response.

See Also

TokenIssuedSuccessEvent(TokenResponse, TokenRequestValidationResult)

Initializes a new instance of the TokenIssuedSuccessEvent class.

public TokenIssuedSuccessEvent(TokenResponse response, TokenRequestValidationResult request)

Parameters

response TokenResponse

The response.

request TokenRequestValidationResult

The request.

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

Endpoint

Gets or sets the endpoint.

public string Endpoint { get; set; }

Property Value

string

The endpoint.

See Also

GrantType

Gets or sets the grant type.

public string GrantType { get; set; }

Property Value

string

The grant type.

See Also

RedirectUri

Gets or sets the redirect URI.

public string RedirectUri { get; set; }

Property Value

string

The redirect URI.

See Also

Scopes

Gets or sets the scopes.

public string Scopes { get; set; }

Property Value

string

The scopes.

See Also

SubjectId

Gets or sets the subject identifier.

public string SubjectId { get; set; }

Property Value

string

The subject identifier.

See Also

Tokens

Gets or sets the tokens.

public IEnumerable<TokenIssuedSuccessEvent.Token> Tokens { get; set; }

Property Value

IEnumerable<TokenIssuedSuccessEvent.Token>

The tokens.

See Also

See Also