
SendCompletedEventHandler Delegate
Represents the method that will handle the SendCompleted event.
Assembly: System (in System.dll)
Syntax
'Declaration Public Delegate Sub SendCompletedEventHandler ( _ sender As Object, _ e As AsyncCompletedEventArgs _ )
Parameters
- sender
- Type: System.Object
The source of the event.
- e
- Type: System.ComponentModel.AsyncCompletedEventArgs
An AsyncCompletedEventArgs containing event data.
Remarks
The SendCompletedEventHandler delegate is used to handle events that occur when the SmtpClient class finishes asynchronously sending an e-mail message using the SendAsync method.
Examples
The following code example demonstrates sending an e-mail message asynchronously. It uses a SendCompletedEventHandler to invoke the SendCompletedCallback method to handle SendCompleted events.
Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role not supported), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.