IpResolvedomain()

Returns the IP address(s) of the supplied domain

Usage

ARRAY = IpResolvedomain( domain, dns )
Argument Summary
domain domain - the name of the server you wish to resolve
dns dns - IP address of the DNS server to use for the lookup [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

IpResolvedomain(
   domain=?, 
   dns=?
);

Supports passing parameters as a structure using ArgumentCollection:

IpResolvedomain( ArgumentCollection={
   domain : ?, 
   dns : ?
} );