MimePartIsFile Property
Indicates whether the MIME part is a file.

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

Property Value

Type: Boolean
true if the MIME part is a file; otherwise, false.
Remarks

See Attachment.IsFile for more information.

Examples
This sample loads the message from .EML file and displays all MIME parts recognized as files.
// 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).
MailMessage msg = new MailMessage();
msg.LoadMessage(@"C:\Docs\TestMail.eml");
foreach (MimePart part in msg.MimePartTree.GetAllParts())
{
    if (part.IsFile)
    {
        Console.WriteLine("MIME part " + part.Filename + " is file.");
    }
}
See Also