SendCompletedEventHandler Delegate
.NET Framework (current version)
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.
.NET Framework
Available since 2.0
Available since 2.0
Show: