3 implementations of Authenticate
System.Net.Mail (3)
System\Net\Mail\SmtpLoginAuthenticationModule.cs (1)
17
public Authorization?
Authenticate
(string? challenge, NetworkCredential? credential, object sessionCookie, string? spn, ChannelBinding? channelBindingToken)
System\Net\Mail\SmtpNegotiateAuthenticationModule.cs (1)
21
public Authorization?
Authenticate
(string? challenge, NetworkCredential? credential, object sessionCookie, string? spn, ChannelBinding? channelBindingToken)
System\Net\Mail\SmtpNtlmAuthenticationModule.cs (1)
18
public Authorization?
Authenticate
(string? challenge, NetworkCredential? credential, object sessionCookie, string? spn, ChannelBinding? channelBindingToken)
5 references to Authenticate
System.Net.Mail (5)
System\Net\Mail\SmtpConnection.cs (5)
283
auth = _authenticationModules[i].
Authenticate
(info.Line, null, this, _client.TargetName, null);
325
return module.
Authenticate
(null, credential, this, _client!.TargetName, null);
335
return module.
Authenticate
(null, credential, this, _client!.TargetName, null);
341
context._result = context._module.
Authenticate
(null, context._credential, context._thisPtr, context._spn, context._token);
831
Authorization? auth = _connection._authenticationModules[_currentModule].
Authenticate
(_authResponse, null, _connection, _connection._client!.TargetName, null);