TextBodyPartCollectionRemoveAt Method |
Removes the text part at the specified zero-based index from the collection.
Namespace: MailBee.MimeAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public void RemoveAt(
int index
)
Public Sub RemoveAt (
index As Integer
)
Parameters
- index
- Type: SystemInt32
The zero-based index of the text part in the collection.
Exceptions Examples This sample loads the message from .EML file and removes the first text part of this message.
using MailBee;
using MailBee.Mime;
MailMessage msg = new MailMessage();
msg.LoadMessage(@"C:\Docs\TestMail.eml");
if (msg.BodyParts.Count > 0)
{
msg.BodyParts.RemoveAt(0);
}
Imports MailBee
Imports MailBee.Mime
Dim msg As New MailMessage
msg.LoadMessage("C:\Docs\TestMail.eml")
If (msg.BodyParts.Count > 0) Then
msg.BodyParts.RemoveAt(0)
End If
See Also