MimePartPartType Property |
Gets the category of the MIME part content.
Namespace: MailBee.MimeAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public MimePartType PartType { get; }
Public ReadOnly Property PartType As MimePartType
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.
using MailBee;
using MailBee.Mime;
MailMessage msg = new MailMessage();
msg.LoadMessage(@"C:\Docs\TestMail.eml");
Console.WriteLine(msg.MimePartTree.PartType.ToString());
Imports MailBee
Imports MailBee.Mime
Dim msg As New MailMessage
msg.LoadMessage("C:\Docs\TestMail.eml")
Console.WriteLine(msg.MimePartTree.PartType.ToString())
See Also