System.Net.Mail.SmtpConnection.AuthenticateCallbackContext.AuthenticateCallbackContext C# (CSharp) Method

AuthenticateCallbackContext() private method

private AuthenticateCallbackContext ( SmtpConnection thisPtr, ISmtpAuthenticationModule module, NetworkCredential credential, string spn, ChannelBinding Token ) : System
thisPtr SmtpConnection
module ISmtpAuthenticationModule
credential System.Net.NetworkCredential
spn string
Token System.Security.Authentication.ExtendedProtection.ChannelBinding
return System
            internal AuthenticateCallbackContext(SmtpConnection thisPtr, ISmtpAuthenticationModule module, NetworkCredential credential, string spn, ChannelBinding Token)
            {
                _thisPtr = thisPtr;
                _module = module;
                _credential = credential;
                _spn = spn;
                _token = Token;

                _result = null;
            }
SmtpConnection.AuthenticateCallbackContext