MailBee.NET Objects 4.0

MimePart.ContentID Property

Gets the Content-ID value of the MIME part.

public string ContentID {get;}

Property Value

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.

Example

This sample loads the message from .EML file and displays Content-ID of each MIME part of the message.

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

// 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);
}
[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)

' Load the message from file.
Dim msg As New MailMessage
msg.LoadMessage("C:\Docs\TestMail.eml")

' For every MIME part...
For Each part As MimePart In msg.MimePartTree.GetAllParts()
    ' ...show MIME part identifier.
    Console.WriteLine(part.ContentID)
Next

See Also

MimePart Class | MailBee.Mime Namespace | IsInline