A delegate which is invoked during a call to GetMessage or GetMessages for every MIME part in a multipart mail message. The delegate can examine the MIME body part and decide to either include it in the returned mail message or dismiss it.

Namespace: S22.Imap
Assembly: S22.Imap (in S22.Imap.dll) Version: 3.6.0.0 (3.6.0.0)

Syntax

C#
public delegate bool ExaminePartDelegate(
	Bodypart part
)

Parameters

part
Type: S22.Imap..::..Bodypart
A MIME body part of a mail message which consists of multiple parts.

Return Value

true to include the body part in the returned MailMessage object, or false to skip it.

See Also