Selects the mailbox on IMAP server.
Namespace: Jscape.EmailAssembly: Jscape.Email (in Jscape.Email.dll) Version: 2.4.5.0
Syntax
C# |
---|
public void SelectMailbox( string mailbox ) |
Visual Basic |
---|
Public Sub SelectMailbox ( _ mailbox As String _ ) |
Visual C++ |
---|
public: void SelectMailbox( String^ mailbox ) |
Parameters
- mailbox
- Type: System..::..String
The name of the mailbox to select.
Examples
This example selects the Test mailbox as the current working mailbox.
CopyImap SelectMailbox
CopyImap SelectMailbox

myImap.SelectMailbox("Test");

myImap.SelectMailbox("Test")