EmailAddressCollectionItem Property |
Gets the
EmailAddress 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 EmailAddress this[
int index
] { get; }
Public ReadOnly Default Property Item (
index As Integer
) As EmailAddress
Get
Parameters
- index
- Type: SystemInt32
The zero-based index of the e-mail address in the collection.
Property Value
Type:
EmailAddress
An
EmailAddress object having the specified zero-based index in the collection.
Exceptions Examples This sample loads the message from .EML file and displays the e-mail address of each message recipient.
using MailBee;
using MailBee.Mime;
MailMessage msg = new MailMessage();
msg.LoadMessage(@"C:\Docs\TestMail.eml");
EmailAddressCollection adr = msg.GetAllRecipients();
for (int i = 0; i < msg.GetAllRecipients().Count; i++)
{
Console.WriteLine(adr[i]);
}
Imports MailBee
Imports MailBee.Mime
Dim msg As New MailMessage
msg.LoadMessage("C:\Docs\TestMail.eml")
Dim i As Integer
Dim adr As EmailAddressCollection = msg.GetAllRecipients()
For i = 0 To msg.GetAllRecipients().Count
Console.WriteLine(adr(i))
Next
See Also