Gets the category of the MIME part content.
The category of the MIME part.
While ContentType property returns string value, this property returns one of more generalized MimePartType values.
This sample loads the message from .EML file and displays the category type of the root MIME part.
[C#] // 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());
[Visual Basic] ' To use the code below, import MailBee namespaces at the top of your code. Imports MailBee Imports MailBee.Mime ' The actual code (put it into a method of your class). Dim msg As New MailMessage msg.LoadMessage("C:\Docs\TestMail.eml") Console.WriteLine(msg.MimePartTree.PartType.ToString())
MimePart Class | MailBee.Mime Namespace | ContentType