MimePartPartType Property
Gets the category of the MIME part content.

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public MimePartType PartType { get; }

Property Value

Type: MimePartType
The category of the MIME part.
Remarks
While ContentType property returns string value, this property returns one of more generalized MimePartType values.
Examples
This sample loads the message from .EML file and displays the category type of the root MIME part.
// To use the code below, import MailBee namespaces at the top of your code.
using MailBee;
using MailBee.Mime;

// The actual code (put it into a method of your class).
MailMessage msg = new MailMessage();
msg.LoadMessage(@"C:\Docs\TestMail.eml");
Console.WriteLine(msg.MimePartTree.PartType.ToString());
See Also