AttachmentRawHeader Property |
Gets a string containing the header section of the attachment in the original form.
Namespace: MailBee.MimeAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public string RawHeader { get; }
Public ReadOnly Property RawHeader As String
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.
using MailBee;
using MailBee.Mime;
MailMessage msg = new MailMessage();
msg.LoadMessage(@"C:\Docs\TestMail.eml");
foreach (Attachment attach in msg.Attachments)
{
Console.WriteLine(attach.RawHeader);
Console.WriteLine();
}
Imports MailBee
Imports MailBee.Mime
Dim msg As New MailMessage
msg.LoadMessage("C:\Docs\TestMail.eml")
For Each attach As Attachment In msg.Attachments
Console.WriteLine(attach.RawHeader)
Console.WriteLine()
Next
See Also