MimePartType Enumeration
Defines the available categories of MIME parts.

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public enum MimePartType
Members
  Member nameValueDescription
Other0 The MIME part format is non-standard.
PlainText1 The MIME part contains plain text (ContentType is text/plain value).
Html2 The MIME part contains HTML (ContentType is text/html value).
RichText3 The MIME part contains text in rich-text format (ContentType is text/rtf or text/richtext value).
Xml4 The MIME part contains XML data (ContentType is text/xml value).
Rfc822Message5 The MIME part contains encapsulated e-mail message (ContentType is message/rfc822 value).
Image6 The MIME part represents an image (ContentType is image/* value, e.g. image/jpeg, image/gif, etc).
Multipart7 The MIME part contains nested MIME parts (ContentType is multipart/* value, e.g. multipart/mixed, multipart/related, etc).
Remarks
To determine the category of the given MIME part, use PartType property.
See Also