16 references to AuthenticationException
System.DirectoryServices (1)
System\DirectoryServices\ActiveDirectory\Exception.cs (1)
320exception = new AuthenticationException(errorMessage, e);
System.DirectoryServices.AccountManagement (1)
System\DirectoryServices\AccountManagement\exceptions.cs (1)
289exception = new AuthenticationException(errorMessage, e);
System.Net.Security (14)
System\Net\Security\NegotiateStream.cs (3)
841_ => new AuthenticationException(SR.net_auth_SSPI, win32Exception) 944ERROR_TRUST_FAILURE => new AuthenticationException(SR.net_auth_context_expectation_remote, e), 945_ => new AuthenticationException(SR.net_auth_alert, e)
System\Net\Security\SslStream.IO.cs (6)
347throw new AuthenticationException(SR.net_auth_SSPI, token.GetException()); 397throw new AuthenticationException(SR.Format(SR.net_auth_tls_alert, _lastFrame.AlertDescription.ToString()), token.GetException()); 408throw new AuthenticationException(SR.net_auth_SSPI, token.GetException()); 697return ExceptionDispatchInfo.SetCurrentStackTrace(new AuthenticationException(SR.net_ssl_io_cert_custom_validation, null)); 702return ExceptionDispatchInfo.SetCurrentStackTrace(new AuthenticationException(SR.Format(SR.net_ssl_io_cert_chain_validation, chainStatus), null)); 707return ExceptionDispatchInfo.SetCurrentStackTrace(new AuthenticationException(SR.Format(SR.net_ssl_io_cert_validation, sslPolicyErrors), null));
System\Net\Security\TlsSession.cs (3)
1027throw new AuthenticationException(SR.net_auth_SSPI, selStatus.Exception); 1064Exception authExc = new AuthenticationException(SR.net_auth_SSPI, token.GetException()); 1436throw new AuthenticationException(SR.net_auth_SSPI, token.GetException());
System\Net\Security\TlsSession.OpenSsl.cs (1)
310_ => throw new AuthenticationException(SR.net_auth_SSPI, CreateDiagnosticSslException(error, result, sslErrorTemplate)),
System\Security\Authentication\AuthenticationException.cs (1)
46public InvalidCredentialException(string? message, Exception? innerException) : base(message, innerException) { }