MailBee.NET Objects 4.0

AttachmentCollection.Clear Method 

Clears the attachments collection.

new public void Clear();

Implements

IList.Clear

Remarks

All Attachment objects contained in the collection will be removed from the mail message.

Example

This sample loads the message from .EML file and clears the attachment collection.

[C#]
// 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)

// Load the message from file.
MailMessage msg = new MailMessage();
msg.LoadMessage(@"C:\Docs\TestMail.eml");

// Remove all the attachments from the message.
msg.Attachments.Clear();
[Visual Basic]
' To use the code below, import MailBee namespaces at the top of your code.
Imports MailBee
Imports MailBee.Mime

' The actual code (put it into a method of your class)

' Load the message from file.
Dim msg As New MailMessage
msg.LoadMessage("C:\Docs\TestMail.eml")

' Remove all the attachments from the message.
msg.Attachments.Clear()

See Also

AttachmentCollection Class | MailBee.Mime Namespace | Attachment