TextBodyPartCollectionItem Property (Int32) |
Gets or sets the
TextBodyPart object in the collection at the specified zero-based index.
Namespace: MailBee.MimeAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public TextBodyPart this[
int index
] { get; set; }
Public Default Property Item (
index As Integer
) As TextBodyPart
Get
Set
Parameters
- index
- Type: SystemInt32
The zero-based index of the text part in the collection.
Property Value
Type:
TextBodyPart
A
TextBodyPart object having the specified zero-based index in the collection.
Exceptions Examples This sample loads the message from .EML file and displays the content of the first text body of the message.
using MailBee;
using MailBee.Mime;
MailMessage msg = new MailMessage();
msg.LoadMessage(@"C:\Docs\TestMail.eml");
if (msg.BodyParts.Count > 0)
{
Console.WriteLine(msg.BodyParts[0].Text);
}
Imports MailBee
Imports MailBee.Mime
Dim msg As New MailMessage
msg.LoadMessage("C:\Docs\TestMail.eml")
If (msg.BodyParts.Count > 0) Then
Console.WriteLine(msg.BodyParts(0).Text)
End If
See Also