MimePartCollectionItem Property (Int32)
Gets the MIME part at the specified zero-based index in the collection.

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public MimePart this[
	int index
] { get; }

Parameters

index
Type: SystemInt32
The zero-based index of the MIME part in the collection.

Property Value

Type: MimePart
A MimePart object having the specified zero-based index in the collection.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThe specified index does not exist.
Examples
This sample loads the message from .EML file and displays Content-Type of all MIME parts.
// 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");
MimePartCollection subParts = msg.MimePartTree.GetAllParts();
for (int i = 0; i < subParts.Count; i++)
{
    MimePart part = subParts[i];
    Console.WriteLine(part.ContentType);
}
See Also