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)
5 references to Authenticate
System.Net.Mail (5)
System\Net\Mail\SmtpConnection.cs (5)
283auth = _authenticationModules[i].Authenticate(info.Line, null, this, _client.TargetName, null); 325return module.Authenticate(null, credential, this, _client!.TargetName, null); 335return module.Authenticate(null, credential, this, _client!.TargetName, null); 341context._result = context._module.Authenticate(null, context._credential, context._thisPtr, context._spn, context._token); 831Authorization? auth = _connection._authenticationModules[_currentModule].Authenticate(_authResponse, null, _connection, _connection._client!.TargetName, null);