DomainNameResolver::GetResolveResult
Defined in:
Returns the result code of a domain name resolution.
C4Network.h
Prototype
NetworkResult GetResolveResult(void) const;
Description
The GetResolveResult
function returns the current status of a DomainNameResolver
object. The return value is one of the following network result codes.
kNetworkOkay |
The domain name was successfully resolved. The IP address can be retrieved using the DomainNameResolver::GetAddress function.
|
kNetworkResolvePending |
The domain name resolution is still in progress. |
kNetworkResolveNotFound |
The resolution operation completed, but the domain name could not be found. |
See Also