MailBee.NET Objects 4.0

MimePart.PartType Property

Gets the category of the MIME part content.

public MimePartType PartType {get;}

Property Value

The category of the MIME part.

Remarks

While ContentType property returns string value, this property returns one of more generalized MimePartType values.

Example

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())

See Also

MimePart Class | MailBee.Mime Namespace | ContentType