13 instantiations of NTAuthentication
System (13)
net\System\Net\_AuthenticationManagerBase.cs (2)
119NTAuthentication client = new NTAuthentication(false, NtlmClient.AuthType, 124NTAuthentication server = new NTAuthentication(true, NtlmClient.AuthType,
net\System\Net\_DigestClient.cs (1)
349new NTAuthentication(
net\System\Net\_KerberosClient.cs (1)
100new NTAuthentication(
net\System\Net\_NegotiateClient.cs (1)
103new NTAuthentication(
net\System\Net\_NtlmClient.cs (1)
100new NTAuthentication(
net\System\Net\HttpListener.cs (3)
1558context = new NTAuthentication(true, NegotiationInfoClass.WDigest, null, 1635context = new NTAuthentication(true, package, null, 2252context = new NTAuthentication(true, NegotiationInfoClass.WDigest, null,
net\System\Net\mail\SmtpDigestAuthenticationModule.cs (1)
51this.sessions[sessionCookie] = clientContext = new NTAuthentication(false, "WDigest", credential, spn, ContextFlags.Connection, channelBindingToken);
net\System\Net\mail\SmtpNegotiateAuthenticationModule.cs (1)
47new NTAuthentication(false, "Negotiate", credential, spn,
net\System\Net\mail\SmtpNtlmAuthenticationModule.cs (1)
51new NTAuthentication(false, "Ntlm", credential, spn, ContextFlags.Connection, channelBindingToken);
net\System\Net\SecureProtocols\_NegoState.cs (1)
217_Context = new NTAuthentication(isServer, package, credential, servicePrincipalName, flags, channelBinding);
44 references to NTAuthentication
System (44)
net\System\Net\_AuthenticationManagerBase.cs (2)
119NTAuthentication client = new NTAuthentication(false, NtlmClient.AuthType, 124NTAuthentication server = new NTAuthentication(true, NtlmClient.AuthType,
net\System\Net\_AuthenticationState.cs (3)
50private NTAuthentication SecurityContext; 52internal NTAuthentication GetSecurityContext(IAuthenticationModule module) { 57internal void SetSecurityContext(NTAuthentication securityContext, IAuthenticationModule module) {
net\System\Net\_DigestClient.cs (2)
277NTAuthentication authSession = null; 406NTAuthentication authSession = httpWebRequest.CurrentAuthenticationState.GetSecurityContext(this);
net\System\Net\_KerberosClient.cs (2)
39NTAuthentication authSession = null; 151NTAuthentication authSession = httpWebRequest.CurrentAuthenticationState.GetSecurityContext(this);
net\System\Net\_NegotiateClient.cs (2)
36NTAuthentication authSession = null; 167NTAuthentication authSession = httpWebRequest.CurrentAuthenticationState.GetSecurityContext(this);
net\System\Net\_NTAuthentication.cs (2)
457internal InitializeCallbackContext(NTAuthentication thisPtr, bool isServer, string package, NetworkCredential credential, string spn, ContextFlags requestedContextFlags, ChannelBinding channelBinding) 468internal readonly NTAuthentication thisPtr;
net\System\Net\_NtlmClient.cs (2)
37NTAuthentication authSession = null; 159NTAuthentication authSession = httpWebRequest.CurrentAuthenticationState.GetSecurityContext(this);
net\System\Net\AuthenticationManager.cs (1)
404NTAuthentication authSession,
net\System\Net\HttpListener.cs (18)
1377NTAuthentication oldContext = null; 1378NTAuthentication newContext = null; 1379NTAuthentication context = null; 1807NTAuthentication toClose = newContext; 1847NTAuthentication toClose = newContext; 1874NTAuthentication toClose = oldContext; 1922NTAuthentication toClose = newContext; 1998NTAuthentication newContext; 2058private bool CheckSpn(NTAuthentication context, bool isSecureConnection, ExtendedProtectionPolicy policy) 2226out NTAuthentication newContext, ExtendedProtectionPolicy policy, bool isSecureConnection) 2246NTAuthentication context = null; 2543internal NTAuthentication context; 2554private void SaveDigestContext(NTAuthentication digestContext) 2562NTAuthentication oldContext = null; 2625((NTAuthentication)digestsToClose[i]).CloseContext(); 2666((NTAuthentication) toClose[j][k]).CloseContext(); 2681private NTAuthentication m_Session; 2821internal NTAuthentication Session
net\System\Net\mail\SmtpDigestAuthenticationModule.cs (2)
40NTAuthentication clientContext = this.sessions[sessionCookie] as NTAuthentication;
net\System\Net\mail\SmtpNegotiateAuthenticationModule.cs (5)
37NTAuthentication clientContext = this.sessions[sessionCookie] as NTAuthentication; 100NTAuthentication clientContext = null; 102clientContext = sessions[sessionCookie] as NTAuthentication; 121NTAuthentication clientContext) {
net\System\Net\mail\SmtpNtlmAuthenticationModule.cs (2)
42NTAuthentication clientContext = this.sessions[sessionCookie] as NTAuthentication;
net\System\Net\SecureProtocols\_NegoState.cs (1)
51private NTAuthentication _Context;