Raised when information about a mailbox is received while performing a listing.
Syntax
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As Imap
Dim handler As MailboxEventHandler
AddHandler instance.Mailbox, handler |
Event Data
The event handler receives an argument of type MailboxEventArgs containing data related to this event. The following MailboxEventArgs properties provide information specific to this event.
| Property | Description |
|---|
| Exception (Inherited from Dart.PowerTCP.Mail.EndEventArgs) | Gets any exception which occurred during the asynchronous operation. |
| Mailbox | Gets the Mailbox object representing the IMAP mailbox for which the event was raised. |
| Mailboxes | Gets an array of Mailbox objects representing all mailboxes effected by the operation. |
| State (Inherited from Dart.PowerTCP.Mail.EndEventArgs) | Gets the object that was included as part of the associated method call. |
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also