AttachmentCollectionRemoveAt Method |
Removes the attachment with the specified 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 attachment to be removed.
Return Value
Type:
true if the specified attachment was successfully removed from the collection; otherwise,
false.
Exceptions Examples This sample loads the message from .EML file and removes the first attachment from the message.
using MailBee;
using MailBee.Mime;
MailMessage msg = new MailMessage();
msg.LoadMessage(@"C:\Docs\TestMail.eml");
msg.Attachments.RemoveAt(0);
Imports MailBee
Imports MailBee.Mime
Dim msg As New MailMessage
msg.LoadMessage("C:\Docs\TestMail.eml")
msg.Attachments.RemoveAt(0)
See Also