ComponentSpace Email Checker Class Library Reference

EmailAddressChecker.CheckCompleted Event

Occurs when the email address check has completed.

[Visual Basic]
Public Event CheckCompleted As CheckCompletedEventHandler
[C#]
public event CheckCompletedEventHandler CheckCompleted;

Event Data

The event handler receives an argument of type CheckCompletedEventArgs containing data related to this event. The following CheckCompletedEventArgs property provides information specific to this event.

Property Description
AsyncResult Gets the result of the asynchronous receive operation.

Remarks

BeginCheck is used in asynchronous processing to raise the CheckCompleted event when the email address check operation has completed.

EndCheck is used to complete the operation initiated by a call to BeginCheck and get the check status when the CheckCompleted event is raised.

See Also

EmailAddressChecker Class | ComponentSpace.EmailChecker Namespace