8 references to AuthenticationFailureException
Microsoft.AspNetCore.Authentication (2)
HandleRequestResult.cs (2)
65
=> Fail(new
AuthenticationFailureException
(failureMessage));
74
=> Fail(new
AuthenticationFailureException
(failureMessage), properties);
Microsoft.AspNetCore.Authentication.Abstractions (2)
AuthenticateResult.cs (2)
121
=> Fail(new
AuthenticationFailureException
(failureMessage));
130
=> Fail(new
AuthenticationFailureException
(failureMessage), properties);
Microsoft.AspNetCore.Authentication.OAuth (4)
OAuthHandler.cs (3)
99
var deniedEx = new
AuthenticationFailureException
("Access was denied by the resource owner or by the remote server.");
118
var ex = new
AuthenticationFailureException
(failureMessage.ToString());
239
return OAuthTokenResponse.Failed(new
AuthenticationFailureException
(errorMessage));
OAuthTokenResponse.cs (1)
118
var exception = new
AuthenticationFailureException
(result.ToString());