TextBodyPartHeaders Property
Gets the collection of the text part headers.

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

Property Value

Type: HeaderCollection
A HeaderCollection object containing the headers of the text part.
Examples
This sample loads the message from .EML file and displays the values of headers of each text 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 text part...
foreach (TextBodyPart part in msg.BodyParts)
{
    // Show the type of the text part.
    Console.WriteLine(string.Format("Text part {0} headers values:", part.AsMimePart.ContentType));

    // For every header...
    foreach (Header hdr in part.Headers)
    {
        // Show the value of the header.
        Console.WriteLine(hdr.Value);
    }
}
See Also