Table of Contents

Class LocalApiAuthenticationOptions

Namespace
Duende.IdentityServer.Hosting.LocalApiAuthentication
Assembly
Duende.IdentityServer.dll

Options for local API authentication

public class LocalApiAuthenticationOptions : AuthenticationSchemeOptions
Inheritance
LocalApiAuthenticationOptions
Inherited Members

Constructors

LocalApiAuthenticationOptions()

public LocalApiAuthenticationOptions()
See Also

Properties

Events

Allows implementing events

public LocalApiAuthenticationEvents Events { get; set; }

Property Value

LocalApiAuthenticationEvents
See Also

ExpectedScope

Allows setting a specific required scope (optional)

public string? ExpectedScope { get; set; }

Property Value

string
See Also

SaveToken

Specifies whether the token should be saved in the authentication properties

public bool SaveToken { get; set; }

Property Value

bool
See Also

TokenMode

Indicates if bearer and/or DPoP tokens are accepted.

public LocalApiTokenMode TokenMode { get; set; }

Property Value

LocalApiTokenMode
See Also

See Also