3 implementations of AuthenticationType
System.Net.Mail (3)
System\Net\Mail\SmtpLoginAuthenticationModule.cs (1)
50public string AuthenticationType
System\Net\Mail\SmtpNegotiateAuthenticationModule.cs (1)
81public string AuthenticationType
System\Net\Mail\SmtpNtlmAuthenticationModule.cs (1)
62public string AuthenticationType
4 references to AuthenticationType
System.Net.Mail (4)
System\Net\Mail\SmtpConnection.cs (4)
266NetworkCredential? credential = _credentials.GetCredential(host, port, _authenticationModules[i].AuthenticationType); 274info = AuthCommand.Send(this, _authenticationModules[i].AuthenticationType, auth.Message); 754NetworkCredential? credential = _connection._credentials.GetCredential(_host, _port, module.AuthenticationType); 761IAsyncResult result = AuthCommand.BeginSend(_connection, _connection._authenticationModules[_currentModule].AuthenticationType, auth.Message, s_authenticateCallback, this);