MailBee.NET Objects 4.0

MimePart.IsFile Property

Indicates whether the MIME part is a file.

public bool IsFile {get;}

Property Value

true if the MIME part is a file; otherwise, false.

Remarks

See Attachment.IsFile for more information.

Example

This sample loads the message from .EML file and displays all MIME parts recognized as files.

[C#]
// 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.");
    }
}
[Visual Basic]
' To use the code below, import MailBee namespaces at the top of your code.
Imports MailBee
Imports MailBee.Mime

' The actual code (put it into a method of your class).
Dim msg As New MailMessage
msg.LoadMessage("C:\Docs\TestMail.eml")
For Each part As MimePart In msg.MimePartTree.GetAllParts()
    If part.IsFile Then
        Console.WriteLine("MIME part " & part.Filename & " is file.")
    End If
Next

See Also

MimePart Class | MailBee.Mime Namespace