MimePartContentID Property
Gets the Content-ID value of the MIME part.

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

Property Value

Type: String
A string containing the Content-ID (CID) value of the MIME part, or an empty string if the MIME part has no Content-ID.
Remarks
See Attachment.ContentID for more information regarding Content-IDs.
Examples
This sample loads the message from .EML file and displays Content-ID of each MIME part of the message.
// 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)

// Load the message from file.
MailMessage msg = new MailMessage();
msg.LoadMessage(@"C:\Docs\TestMail.eml");

// For every MIME part...
foreach (MimePart part in msg.MimePartTree.GetAllParts())
{
    // ...show MIME part identifier.
    Console.WriteLine(part.ContentID);
}
See Also