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

EndGetConnection() private method

private EndGetConnection ( IAsyncResult result ) : void
result IAsyncResult
return void
        internal void EndGetConnection(IAsyncResult result)
        {
            ConnectAndHandshakeAsyncResult.End(result);
        }

Usage Example

 internal void EndGetConnection(IAsyncResult result)
 {
     GlobalLog.Enter("SmtpTransport#" + ValidationHelper.HashString(this) + "::EndGetConnection");
     try {
         connection.EndGetConnection(result);
     }
     finally {
         GlobalLog.Leave("SmtpTransport#" + ValidationHelper.HashString(this) + "::EndConnect");
     }
 }
All Usage Examples Of System.Net.Mail.SmtpConnection::EndGetConnection