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

End() static private method

static private End ( IAsyncResult result ) : void
result IAsyncResult
return void
            internal static void End(IAsyncResult result)
            {
                ConnectAndHandshakeAsyncResult thisPtr = (ConnectAndHandshakeAsyncResult)result;
                object connectResult = thisPtr.InternalWaitForCompletion();
                if (connectResult is Exception)
                {
                    throw (Exception)connectResult;
                }
            }