This documentation is archived and is not being maintained.
SendCompletedEventHandler Delegate
Visual Studio 2010
Represents the method that will handle the SendCompleted event.
Assembly: System (in System.dll)
type SendCompletedEventHandler = delegate of sender:Object * e:AsyncCompletedEventArgs -> unit
Parameters
- sender
- Type: System.Object
The source of the event.
- e
- Type: System.ComponentModel.AsyncCompletedEventArgs
An AsyncCompletedEventArgs containing event data.
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.
The following code example demonstrates sending an e-mail message asynchronously. It uses a SendCompletedEventHandler to invoke the SendCompletedCallback method to handle SendCompleted events.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), 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.
Show: