Table of Contents

Class ConsentDeniedEvent

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

Event for denied consent.

public class ConsentDeniedEvent : Event
Inheritance
ConsentDeniedEvent
Inherited Members

Constructors

ConsentDeniedEvent(string, string, IEnumerable<string>)

Initializes a new instance of the ConsentDeniedEvent class.

public ConsentDeniedEvent(string subjectId, string clientId, IEnumerable<string> requestedScopes)

Parameters

subjectId string

The subject identifier.

clientId string

The client identifier.

requestedScopes IEnumerable<string>

The requested scopes.

See Also

Properties

ClientId

Gets or sets the client ID.

public string ClientId { get; set; }

Property Value

string

The client identifier.

See Also

RequestedScopes

Gets or sets the requested scopes.

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

Property Value

IEnumerable<string>

The requested scopes.

See Also

SubjectId

Gets or sets the subject identifier.

public string SubjectId { get; set; }

Property Value

string

The subject identifier.

See Also

See Also