Class DigestAccessAuthenticationBuilderExtension
This is a factory implementation of the DigestAccessAuthenticationMiddleware class.
Inheritance
System.Object
DigestAccessAuthenticationBuilderExtension
Namespace: Cuemon.AspNetCore.Authentication
Assembly: Cuemon.AspNetCore.Authentication.dll
Syntax
public static class DigestAccessAuthenticationBuilderExtension
Methods
| Improve this DocUseDigestAccessAuthentication(IApplicationBuilder, Action<DigestAccessAuthenticationOptions>)
Adds a HTTP Digest Authentication scheme to the Microsoft.AspNetCore.Builder.IApplicationBuilder request execution pipeline.
Declaration
public static IApplicationBuilder UseDigestAccessAuthentication(this IApplicationBuilder builder, Action<DigestAccessAuthenticationOptions> setup = null)
Parameters
Type | Name | Description |
---|---|---|
Microsoft.AspNetCore.Builder.IApplicationBuilder | builder | The type that provides the mechanisms to configure an application’s request pipeline. |
System.Action<DigestAccessAuthenticationOptions> | setup | The HTTP DigestAccessAuthenticationMiddleware middleware which need to be configured. |
Returns
Type | Description |
---|---|
Microsoft.AspNetCore.Builder.IApplicationBuilder | A reference to this instance after the operation has completed. |