We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f79cf64 commit 13b4268Copy full SHA for 13b4268
src/WeihanLi.Web.Extensions/Authentication/DelegateAuthentication/DelegateAuthenticationHandler.cs
@@ -16,7 +16,7 @@ public sealed class DelegateAuthenticationHandler(
16
protected override async Task<AuthenticateResult> HandleAuthenticateAsync()
17
{
18
ArgumentNullException.ThrowIfNull(Options.Validator);
19
-
+
20
var authenticated = await Options.Validator.Invoke(Context);
21
if (!authenticated)
22
return AuthenticateResult.Fail($"Delegate authentication({Scheme.DisplayName ?? Scheme.Name}) failed.");
0 commit comments