AttachmentCollectionItem Property (Int32) |
Gets or sets the
Attachment object at the specified zero-based index in the collection.
Namespace: MailBee.MimeAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public Attachment this[
int index
] { get; set; }
Public Default Property Item (
index As Integer
) As Attachment
Get
Set
Parameters
- index
- Type: SystemInt32
The zero-based index number of the attachment in the collection.
Property Value
Type:
Attachment
An
Attachment object having the specified zero-based index in the collection.
Exceptions Examples This sample loads the message from .EML file and saves the first attachment to disk.
using MailBee;
using MailBee.Mime;
MailMessage msg = new MailMessage();
msg.LoadMessage(@"C:\Docs\TestMail.eml");
if (msg.Attachments.Count > 0)
{
Attachment attach = msg.Attachments[0];
attach.SaveToFolder(@"C:\Temp", true);
}
Imports MailBee
Imports MailBee.Mime
Dim msg As New MailMessage
msg.LoadMessage("C:\Docs\TestMail.eml")
If msg.Attachments.Count > 0 Then
Dim attach As Attachment = msg.Attachments(0)
attach.SaveToFolder("C:\Temp", True)
End If
See Also