Delegate DigestAuthenticator
- Assembly
- Cuemon.AspNetCore.Authentication.dll
Represents the method that defines an Authenticator typically assigned on DigestAuthenticationOptions.
public delegate ClaimsPrincipal DigestAuthenticator(string username, out string password);
Parameters
username
StringThe username to match and lookup the paired
password
.password
StringThe password paired with
username
.
Returns
- ClaimsPrincipal
A ClaimsPrincipal that is associated with the result of
password
.