NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DNS.GetHostByAddr (IPAddress)

Creates an System.Net.IPHostAddress instance from an IPAddress instance.

[Visual Basic]
Overloads Public Shared Function GetHostByAddr( _
   ByVal address As IPAddress _
) As IPHostEntry
[C#]
public static IPHostEntry GetHostByAddr(
   IPAddress address
);
[C++]
public: static IPHostEntry* GetHostByAddr(
   IPAddress* address
);
[JScript]
public static function GetHostByAddr(
   address : IPAddress
) : IPHostEntry;

Parameters

address
An IPAddress instance.

Return Value

IPHostEntry instance.

Remarks

The name Inet_Ntoa() for this method was used instead of ToString() to maintain consistency with the traditional Winsock function Inet_Ntoa().

See Also

DNS Class | DNS Members | System.Net Namespace | DNS.GetHostByAddr Overload List