Dns.BeginGetHostEntry Method (String, AsyncCallback, Object)
Assembly: System (in system.dll)
'Declaration Public Shared Function BeginGetHostEntry ( _ hostNameOrAddress As String, _ requestCallback As AsyncCallback, _ stateObject As Object _ ) As IAsyncResult 'Usage Dim hostNameOrAddress As String Dim requestCallback As AsyncCallback Dim stateObject As Object Dim returnValue As IAsyncResult returnValue = Dns.BeginGetHostEntry(hostNameOrAddress, requestCallback, stateObject)
public static IAsyncResult BeginGetHostEntry ( String hostNameOrAddress, AsyncCallback requestCallback, Object stateObject )
public static function BeginGetHostEntry ( hostNameOrAddress : String, requestCallback : AsyncCallback, stateObject : Object ) : IAsyncResult
Parameters
- hostNameOrAddress
The host name or IP address to resolve.
- requestCallback
An AsyncCallback delegate that references the method to invoke when the operation is complete.
- stateObject
A user-defined object that contains information about the operation. This object is passed to the requestCallback delegate when the operation is complete.
Return Value
An IAsyncResult instance that references the asynchronous request.The BeginGetHostEntry method queries a DNS server for the IP address that is associated with a host name or IP address.
Note This member emits trace information when you enable network tracing in your application. For more information, see Network Tracing.
The asynchronous BeginGetHostEntry operation must be completed by calling the EndGetHostEntry method. Typically, the method is invoked by the requestCallback delegate.
This method does not block until the operation is complete. To block until the operation is complete, use the GetHostEntry method.
For detailed information about using the asynchronous programming model, see Calling Synchronous Methods Asynchronously.
The following code example uses the BeginGetHostEntry method to resolve an IP address to an IPHostEntry instance.
// Signals when the resolve has finished. public static ManualResetEvent GetHostEntryFinished = new ManualResetEvent(false); // Define the state object for the callback. // Use hostName to correlate calls with the proper result. public class ResolveState { string hostName; IPHostEntry resolvedIPs; public ResolveState(string host) { hostName = host; } public IPHostEntry IPs { get { return resolvedIPs; } set {resolvedIPs = value;}} public string host {get {return hostName;} set {hostName = value;}} } // Record the IPs in the state object for later use. public static void GetHostEntryCallback(IAsyncResult ar) { ResolveState ioContext = (ResolveState)ar.AsyncState; ioContext.IPs = Dns.EndGetHostEntry(ar); GetHostEntryFinished.Set(); } // Determine the Internet Protocol (IP) addresses for // this host asynchronously. public static void DoGetHostEntryAsync(string hostname) { GetHostEntryFinished.Reset(); ResolveState ioContext= new ResolveState(hostname); Dns.BeginGetHostEntry(ioContext.host, new AsyncCallback(GetHostEntryCallback), ioContext); // Wait here until the resolve completes (the callback // calls .Set()) GetHostEntryFinished.WaitOne(); Console.WriteLine("EndGetHostEntry({0}) returns:", ioContext.host); foreach (IPAddress ip in ioContext.IPs.AddressList) { Console.WriteLine(" {0}", ip); } }
- DnsPermission for accessing DNS information. Associated enumeration: PermissionState.Unrestricted
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.