Table of Contents

Class AuthorizationHeaderOptions

Namespace
Cuemon.AspNetCore.Authentication
Assembly
Cuemon.AspNetCore.Authentication.dll

Configuration options for AuthorizationHeader.

public class AuthorizationHeaderOptions : IValidatableParameterObject, IParameterObject
Inheritance
Object
AuthorizationHeaderOptions
Implements

Constructors

AuthorizationHeaderOptions()

Initializes a new instance of the AuthorizationHeaderOptions class.

public AuthorizationHeaderOptions()

Remarks

The following table shows the initial property values for an instance of AuthorizationHeaderOptions.

PropertyInitial Value
CredentialsDelimiter,
CredentialsKeyValueDelimiter=

Properties

CredentialsDelimiter

Gets or sets the credentials delimiter.

public string CredentialsDelimiter { get; set; }

Property Value

String

The credentials delimiter.

CredentialsKeyValueDelimiter

Gets or sets the credentials key value delimiter.

public string CredentialsKeyValueDelimiter { get; set; }

Property Value

String

The credentials key value delimiter.

Methods

ValidateOptions()

Determines whether the public read-write properties of this instance are in a valid state.

public void ValidateOptions()

Remarks

This method is expected to throw exceptions when one or more conditions fails to be in a valid state.

Exceptions

System.InvalidOperationException

CredentialsDelimiter cannot be null - or - CredentialsKeyValueDelimiter cannot be null.