Gets the friendly name of the attachment.
Namespace: MailBee.MimeAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public string Name { get; }
Public ReadOnly Property Name As String
Get
Property Value
Type:
String
A string containing the "friendly name" (or "display name") of the attachment, or an empty string if the friendly name
is not available.
Remarks
This property contains the attachment friendly name which is taken from
name parameter of Content-Type header of the attachment.
An attachment friendly name is usually equal to its
FilenameOriginal, but it may be different sometimes. To obtain the original filename
of the attached file, use
FilenameOriginal property.
Note |
---|
Since Name value can be empty, it's usually more convenient to use Filename value instead. |
Examples This sample loads the message from .EML file and displays the friendly names of all attachments.
using MailBee;
using MailBee.Mime;
MailMessage msg = new MailMessage();
msg.LoadMessage(@"C:\Docs\TestMail.eml");
foreach (Attachment attach in msg.Attachments)
{
Console.WriteLine("Name is " + attach.Name);
}
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("Name is " & attach.Name)
Next
See Also