2 implementations of ShouldSendCredential
PresentationCore (1)
Core\CSharp\MS\Internal\AppModel\CustomCredentialPolicy.cs (1)
118
public bool
ShouldSendCredential
(Uri challengeUri, WebRequest request, NetworkCredential credential, IAuthenticationModule authenticationModule)
System (1)
net\System\Net\IntranetCredentialPolicy.cs (1)
78
public virtual bool
ShouldSendCredential
(Uri challengeUri, WebRequest request, NetworkCredential credential, IAuthenticationModule authModule)
6 references to ShouldSendCredential
System (6)
net\System\Net\_BasicClient.cs (1)
96
if (policy != null && !policy.
ShouldSendCredential
(httpWebRequest.ChallengedUri, httpWebRequest, NC, this))
net\System\Net\_DigestClient.cs (2)
110
if (policy != null && !policy.
ShouldSendCredential
(httpWebRequest.ChallengedUri, httpWebRequest, NC, this))
336
if (policy != null && !policy.
ShouldSendCredential
(httpWebRequest.ChallengedUri, httpWebRequest, NC, this))
net\System\Net\_KerberosClient.cs (1)
87
if (policy != null && !policy.
ShouldSendCredential
(httpWebRequest.ChallengedUri, httpWebRequest, NC, this))
net\System\Net\_NegotiateClient.cs (1)
90
if (policy != null && !policy.
ShouldSendCredential
(httpWebRequest.ChallengedUri, httpWebRequest, NC, this))
net\System\Net\_NtlmClient.cs (1)
87
if (policy != null && !policy.
ShouldSendCredential
(httpWebRequest.ChallengedUri, httpWebRequest, NC, this))