Event handler for IProcessMail status update events. These events are also used to determine
when the StartDownloadingAttachments()()()() and StartListFolders()()()() are complete.
For more information see IProcessMailEvent.
The following example shows how to register to receive these events and define a function to handle these events.
CopyC#
where StatusUpdate is defined in the 'this' context as shown below.
CopyC#
Namespace: MailAttachmentDownloaderApiThe following example shows how to register to receive these events and define a function to handle these events.
IProcessMail m_procMail; // obtained from an instance // of MailAttachmentDownloaderPlatform. ... m_procMail.StatusUpdateInstance += new StatusUpdate(this.StatusUpdate); ...
public void StatusUpdate(IProcessMailEvent imapEvent) { switch (imapEvent.EventType) { case ProcessMailEventType.MailProcessSearchResults: .... } }
Assembly: MailAttachmentDownloaderApi (in MailAttachmentDownloaderApi.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
StatusUpdate StatusUpdateInstance { get; set; } |