ComponentSpace DNS Class Library Reference

DnsClient.ReverseLookup Method 

Performs a reverse DNS lookup to resolve an IP address to one or more host names. For example, 66.210.153.10 is resolved to www.componentspace.com. For more information about reverse lookups, refer to RFC 1035.

[Visual Basic]
Public Function ReverseLookup( _
   ByVal hostAddress As IPAddress _
) As String()
[C#]
public string[] ReverseLookup(
   IPAddress hostAddress
);

Parameters

hostAddress
The IP address to lookup.

Return Value

The resolved host names.

Exceptions

Exception Type Condition
DnsLookupException Thrown when the lookup fails.

See Also

DnsClient Class | ComponentSpace.Dns Namespace