MailMessageIsEntire Property
Indicates if the message was received completely.

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

Property Value

Type: Boolean
true if the message is complete; otherwise, false.
Remarks

If the e-mail message is not entire, the developer can use PartCount property to examine whether the e-mail message is composite (i.e. actually consists of several messages which must be joined to get the complete message). To get the index of the part the message represents, use PartIndex property.

However, the message may be incomplete even if it's a normal message. For instance, if you downloaded only a message header from the mail server, the message will be incomplete too (you'll need to download the entire message to get it completely).

Examples
This sample gets the headers of the message and the first 10 lines of its body message from the POP3 server and determines whatever the message is entire, partial or incomplete. It will be partial if it's a composite message split into smaller ones, or it will be entire if the entire message body fits into 10 lines, or it will be incomplete if its body does not fit into 10 lines which have been downloaded.
using System;
using MailBee;
using MailBee.Mime;
using MailBee.Pop3Mail;

class Sample
{
    static void Main(string[] args)
    {
        // Download the first mail message from the specified POP3 account.
        MailMessage msg = Pop3.QuickDownloadMessage("mail.domain.com", "jdoe", "password", 1, 10);

        // Check whatever the message is entire, partial,
        // or it was received incompletely.
        if (msg.IsEntire)
        {
            Console.WriteLine("The message was completely received");
        }
        else if (msg.PartCount > 1)
        {
            Console.WriteLine(@"The message is partial (part index is " + 
                msg.PartIndex + ")");
        }
        else
        {
            Console.WriteLine(@"The message was not completely received 
                (the body is larger than 10 lines downloaded)");
        }
    }
}
See Also