Occurs when the POP3 server name is successully resolved into IP address(es).
Namespace: MailBee.Pop3MailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax Remarks If the POP3 server name (
serverName parameter of
Connect(String, Int32, Boolean) method)
was already specified as an IP address, this event is still raised.
Note |
---|
No checking if performed on whether the resolved IP address points to the live host. |
Examples This sample connects to the POP3 server host and prints all the IP addresses
of this host into console. Most hosts, however, have only one IP address assigned.
using System;
using MailBee;
using MailBee.Pop3Mail;
class Sample
{
private static void OnHostResolved(object sender, HostResolvedEventArgs e)
{
foreach (System.Net.IPAddress ip in e.RemoteHost.AddressList)
{
Console.WriteLine(ip.ToString());
}
}
static void Main(string[] args)
{
Pop3 pop = new Pop3();
pop.HostResolved += new HostResolvedEventHandler(OnHostResolved);
pop.Connect("mail.domain.com");
pop.Disconnect();
}
}
Imports System
Imports MailBee
Imports MailBee.Pop3Mail
Class Sample
Private Shared Sub OnHostResolved(ByVal sender As Object, ByVal e As HostResolvedEventArgs)
For Each ip As System.Net.IPAddress In e.RemoteHost.AddressList
Console.WriteLine(ip.ToString())
Next
End Sub
Shared Sub Main(ByVal args As String())
Dim pop As New Pop3
AddHandler pop.HostResolved, AddressOf OnHostResolved
pop.Connect("mail.domain.com")
pop.Disconnect()
End Sub
End Class
See Also