8 references to CredentialsNeeded
System.Net.Security (8)
src\runtime\src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.OpenSsl.cs (1)
756
return SecurityStatusPalErrorCode.
CredentialsNeeded
;
System\Net\Security\SslStream.Protocol.cs (1)
895
if (token.Status.ErrorCode == SecurityStatusPalErrorCode.
CredentialsNeeded
)
System\Net\Security\SslStream.TlsSessionWedge.cs (1)
101
if (token.Status.ErrorCode == SecurityStatusPalErrorCode.
CredentialsNeeded
)
System\Net\Security\SslStreamPal.Unix.cs (3)
124
Interop.Ssl.SslErrorCode.SSL_ERROR_WANT_X509_LOOKUP => new SecurityStatusPal(SecurityStatusPalErrorCode.
CredentialsNeeded
),
203
if (errorCode == SecurityStatusPalErrorCode.
CredentialsNeeded
)
214
token.Status = new SecurityStatusPal(SecurityStatusPalErrorCode.
CredentialsNeeded
);
System\Net\Security\TlsSession.cs (2)
1055
token.Status.ErrorCode != SecurityStatusPalErrorCode.
CredentialsNeeded
&&
1079
bool needsCredentials = token.Status.ErrorCode == SecurityStatusPalErrorCode.
CredentialsNeeded
;