Gets the list of subfolders in the specified folder.
Namespace:
Rebex.Net
Assembly:
Rebex.Imap (in Rebex.Imap.dll)
Syntax
Visual Basic |
---|
Public Function GetFolderList ( _ folder As String, _ mode As ImapFolderListMode _ ) As ImapFolderCollection |
C# |
---|
public ImapFolderCollection GetFolderList( string folder, ImapFolderListMode mode ) |
Parameters
- folder
- Type: System..::..String
The path to folder for which a list of subfolders is returned.
- mode
- Type: Rebex.Net..::..ImapFolderListMode
List mode that specifies whether to return all folders or subscribed only.
Return Value
A list of subfolders.Remarks
To subscribe and unsubscribe to folders, use Subscribe(String) and Unsubscribe(String) methods.
To get a list of root subfolders, use an empty string for folder.
This method represents IMAP LIST and LSUB commands.