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