9 references to AuthType
System (9)
net\System\Net\_NegotiateClient.cs (2)
104
AuthType
,
148
return
AuthType
;
net\System\Net\_NTAuthentication.cs (1)
348
if (package == NtlmClient.AuthType || package == NegotiateClient.
AuthType
) {
net\System\Net\CredentialCache.cs (2)
70
|| (string.Compare(authType, NegotiateClient.
AuthType
, StringComparison.OrdinalIgnoreCase)==0))
113
|| (string.Compare(authenticationType, NegotiateClient.
AuthType
, StringComparison.OrdinalIgnoreCase)==0))
net\System\Net\HttpListener.cs (4)
1466
string.Compare(authorizationHeader, 0, NegotiateClient.
AuthType
, 0, index, StringComparison.OrdinalIgnoreCase) == 0)
1626
string package = headerScheme == AuthenticationSchemes.Ntlm ? NtlmClient.AuthType : NegotiateClient.
AuthType
;
1736
challenge = (headerScheme==AuthenticationSchemes.Ntlm ? NtlmClient.AuthType : NegotiateClient.
AuthType
);
2234
AddChallenge(ref challenges, NegotiateClient.
AuthType
);