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

ConnectAndHandshakeAsyncResult() private method

private ConnectAndHandshakeAsyncResult ( SmtpConnection connection, string host, int port, ContextAwareResult outerResult, AsyncCallback callback, object state ) : System
connection SmtpConnection
host string
port int
outerResult System.Net.ContextAwareResult
callback AsyncCallback
state object
return System
            internal ConnectAndHandshakeAsyncResult(SmtpConnection connection, string host, int port, ContextAwareResult outerResult, AsyncCallback callback, object state) :
                base(null, state, callback)
            {
                _connection = connection;
                _host = host;
                _port = port;

                _outerResult = outerResult;
            }