13 references to AuthType
System (13)
net\System\Net\_AuthenticationManagerBase.cs (2)
119
NTAuthentication client = new NTAuthentication(false, NtlmClient.
AuthType
,
124
NTAuthentication server = new NTAuthentication(true, NtlmClient.
AuthType
,
net\System\Net\_NTAuthentication.cs (1)
348
if (package == NtlmClient.
AuthType
|| package == NegotiateClient.AuthType) {
net\System\Net\_NtlmClient.cs (4)
16
internal static string Signature =
AuthType
.ToLower(CultureInfo.InvariantCulture);
101
AuthType
,
125
return AuthenticationManager.GetGroupAuthorization(this,
AuthType
+ " " + clientResponse, authSession.IsCompleted, authSession, canShareConnection, false);
141
return
AuthType
;
net\System\Net\CredentialCache.cs (2)
67
&& !((string.Compare(authType, NtlmClient.
AuthType
, StringComparison.OrdinalIgnoreCase)==0)
110
&& !((string.Compare(authenticationType, NtlmClient.
AuthType
, StringComparison.OrdinalIgnoreCase)==0)
net\System\Net\HttpListener.cs (4)
1471
string.Compare(authorizationHeader, 0, NtlmClient.
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);
2239
AddChallenge(ref challenges, NtlmClient.
AuthType
);