AttachmentRawHeader Property
Gets a string containing the header section of the attachment in the original form.

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

Property Value

Type: String
A string containing the attachment header section as it came with the message, or an empty string if the attachment was added by the application rather than extracted from the message.
Examples
This sample loads the message from .EML file and displays the raw header of each attachment.
// 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 attachment...
foreach (Attachment attach in msg.Attachments)
{
    // ...show its header section.
    Console.WriteLine(attach.RawHeader);
    Console.WriteLine();
}
See Also