Click or drag to resize
MimeKit

ImapFolder Constructor

Initializes a new instance of the ImapFolder class.

Namespace: MailKit.Net.Imap
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public ImapFolder(
	ImapFolderConstructorArgs args
)

Parameters

args  ImapFolderConstructorArgs
The constructor arguments.
Exceptions
ExceptionCondition
ArgumentNullExceptionargs is null.
Remarks

Creates a new ImapFolder.

If you subclass ImapFolder, you will also need to subclass ImapClient and override the CreateImapFolder(ImapFolderConstructorArgs) method in order to return a new instance of your ImapFolder subclass.

See Also