4 implementations of Authenticate
System (4)
net\System\Net\mail\SmtpDigestAuthenticationModule.cs (1)
35
public Authorization
Authenticate
(string challenge, NetworkCredential credential, object sessionCookie, string spn, ChannelBinding channelBindingToken)
net\System\Net\mail\SmtpLoginAuthenticationModule.cs (1)
34
public Authorization
Authenticate
(string challenge, NetworkCredential credential, object sessionCookie, string spn, ChannelBinding channelBindingToken)
net\System\Net\mail\SmtpNegotiateAuthenticationModule.cs (1)
30
public Authorization
Authenticate
(string challenge, NetworkCredential credential, object sessionCookie, string spn, ChannelBinding channelBindingToken)
net\System\Net\mail\SmtpNtlmAuthenticationModule.cs (1)
36
public Authorization
Authenticate
(string challenge, NetworkCredential credential, object sessionCookie, string spn, ChannelBinding channelBindingToken)
6 references to Authenticate
System (6)
net\System\Net\mail\smtpconnection.cs (6)
452
auth = authenticationModules[i].
Authenticate
(info.Line, null, this, this.client.TargetName, this.channelBindingToken);
495
return module.
Authenticate
(null, credential, this, this.client.TargetName, this.channelBindingToken);
511
return module.
Authenticate
(null, credential, this, this.client.TargetName, this.channelBindingToken);
522
return module.
Authenticate
(null, credential, this, this.client.TargetName, this.channelBindingToken);
528
context.result = context.module.
Authenticate
(null, context.credential, context.thisPtr, context.spn, context.token);
1062
Authorization auth = connection.authenticationModules[currentModule].
Authenticate
(authResponse, null, connection, connection.client.TargetName, connection.channelBindingToken);