3 implementations of Authenticate
System.Net.Mail (3)
System\Net\Mail\SmtpLoginAuthenticationModule.cs (1)
17public Authorization? Authenticate(string? challenge, NetworkCredential? credential, object sessionCookie, string? spn, ChannelBinding? channelBindingToken)
System\Net\Mail\SmtpNegotiateAuthenticationModule.cs (1)
21public Authorization? Authenticate(string? challenge, NetworkCredential? credential, object sessionCookie, string? spn, ChannelBinding? channelBindingToken)
System\Net\Mail\SmtpNtlmAuthenticationModule.cs (1)
18public Authorization? Authenticate(string? challenge, NetworkCredential? credential, object sessionCookie, string? spn, ChannelBinding? channelBindingToken)
2 references to Authenticate
System.Net.Mail (2)
System\Net\Mail\SmtpConnection.cs (2)
220auth = _authenticationModules[i].Authenticate(info.Line, null, this, _client!.TargetName, null); 311return module.Authenticate(null, credential, this, _client!.TargetName, null);