45 references to AuthenticationManager
PresentationCore (2)
Core\CSharp\MS\Internal\AppModel\CustomCredentialPolicy.cs (2)
92if (AuthenticationManager.CredentialPolicy == null) 94AuthenticationManager.CredentialPolicy = new CustomCredentialPolicy();
System (35)
net\System\Net\_AuthenticationState.cs (5)
122SpnToken spnToken = AuthenticationManager.SpnDictionary.InternalGet(spnKey); 171AuthenticationManager.SpnDictionary.InternalSet(spnKey, spnToken); 188preauth = AuthenticationManager.PreAuthenticate(httpWebRequest, authInfo); 267Authorization = AuthenticationManager.Authenticate(challenge, httpWebRequest, authInfo); 393AuthenticationManager.BindModule(ChallengedUri, Authorization, Module);
net\System\Net\_BasicClient.cs (2)
42int index = AuthenticationManager.FindSubstringNotInQuotes(challenge, Signature); 95ICredentialPolicy policy = AuthenticationManager.CredentialPolicy;
net\System\Net\_DigestClient.cs (10)
78int index = AuthenticationManager.FindSubstringNotInQuotes(challenge, Signature); 109ICredentialPolicy policy = AuthenticationManager.CredentialPolicy; 213int index = challenge==null ? -1 : AuthenticationManager.FindSubstringNotInQuotes(challenge, Signature); 282index = AuthenticationManager.FindSubstringNotInQuotes(challenge, Signature); 335ICredentialPolicy policy = AuthenticationManager.CredentialPolicy; 412int index = challenge==null ? -1 : AuthenticationManager.FindSubstringNotInQuotes(challenge, Signature); 498index = AuthenticationManager.SplitNoQuotes(incoming, ref offset); 803index = AuthenticationManager.SplitNoQuotes(challenge, ref offset); 831index = AuthenticationManager.SplitNoQuotes(challenge, ref offset); 1085return AuthenticationManager.SspSupportsExtendedProtection &&
net\System\Net\_KerberosClient.cs (3)
43int index = AuthenticationManager.FindSubstringNotInQuotes(challenge, Signature); 86ICredentialPolicy policy = AuthenticationManager.CredentialPolicy; 170int index = challenge==null ? -1 : AuthenticationManager.FindSubstringNotInQuotes(challenge, Signature);
net\System\Net\_NegotiateClient.cs (4)
89ICredentialPolicy policy = AuthenticationManager.CredentialPolicy; 131return AuthenticationManager.GetGroupAuthorization(this, (useNego2 ? nego2Header : negotiateHeader) + 245index = AuthenticationManager.FindSubstringNotInQuotes(challenge, nego2Signature); 250index = AuthenticationManager.FindSubstringNotInQuotes(challenge, negotiateSignature);
net\System\Net\_NtlmClient.cs (3)
41int index = AuthenticationManager.FindSubstringNotInQuotes(challenge, Signature); 86ICredentialPolicy policy = AuthenticationManager.CredentialPolicy; 125return AuthenticationManager.GetGroupAuthorization(this, AuthType + " " + clientResponse, authSession.IsCompleted, authSession, canShareConnection, false);
net\System\Net\Configuration\SettingsSection.cs (1)
23System.Net.AuthenticationManager.EnsureConfigLoaded();
net\System\Net\HttpListener.cs (4)
425if (!AuthenticationManager.OSSupportsExtendedProtection) { 461if (!AuthenticationManager.OSSupportsExtendedProtection && value.PolicyEnforcement == PolicyEnforcement.Always) 2038if (!AuthenticationManager.OSSupportsExtendedProtection) 2089if (!AuthenticationManager.OSSupportsExtendedProtection)
net\System\Net\SecureProtocols\_NegoState.cs (2)
98if (!AuthenticationManager.OSSupportsExtendedProtection) 461if (!AuthenticationManager.OSSupportsExtendedProtection)
security\system\security\Authentication\ExtendedProtection\ExtendedProtectionPolicy.cs (1)
168return AuthenticationManager.OSSupportsExtendedProtection;
System.ServiceModel (8)
System\ServiceModel\Channels\HttpChannelFactory.cs (1)
375string spn = AuthenticationManager.CustomTargetNameDictionary[response.ResponseUri.AbsoluteUri];
System\ServiceModel\Channels\TransportSecurityHelpers.cs (7)
66if (!AuthenticationManager.CustomTargetNameDictionary.ContainsKey(key) 67|| AuthenticationManager.CustomTargetNameDictionary[key] != value) 76if (AuthenticationManager.CustomTargetNameDictionary.ContainsKey(key) 77&& AuthenticationManager.CustomTargetNameDictionary[key] != value) 83AuthenticationManager.CustomTargetNameDictionary[key] = value; 120if (!AuthenticationManager.CustomTargetNameDictionary.ContainsKey(key) 121|| AuthenticationManager.CustomTargetNameDictionary[key] != value)