ComponentSpace DNS Class Library Reference

DnsClient.EndReverseLookup Method 

Completes the specified asynchronous reverse lookup operation.

[Visual Basic]
Public Function EndReverseLookup( _
   ByVal asyncResult As IAsyncResult _
) As String()
[C#]
public string[] EndReverseLookup(
   IAsyncResult asyncResult
);

Parameters

asyncResult
The IAsyncResult that identifies the asynchronous reverse lookup operation to finish, and from which to retrieve an end result.

Return Value

The resolved host names.

Remarks

When the LookupCompleted event is raised, EndReverseLookup completes the operation that was initiated by the BeginReverseLookup call.

Exceptions

Exception Type Condition
DnsLookupException Thrown when the lookup fails.

See Also

DnsClient Class | ComponentSpace.Dns Namespace