System.Net.Mail.SmtpConnection.ConnectAndHandshakeAsyncResult.ConnectAndHandshakeAsyncResult C# (CSharp) 메소드

ConnectAndHandshakeAsyncResult() 개인적인 메소드

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
리턴 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;
            }