IPGlobalProperties::GetIPGlobalProperties Method ()
.NET Framework (current version)
Gets an object that provides information about the local computer's network connectivity and traffic statistics.
Assembly: System (in System.dll)
Return Value
Type: System.Net.NetworkInformation::IPGlobalProperties^A IPGlobalProperties object that contains information about the local computer.
The object returned by this method is a system-supplied type that derives from the IPGlobalProperties class.
The following code example displays information about the local computer.
IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); Console::WriteLine( "Computer name: {0}", properties->HostName ); Console::WriteLine( "Domain name: {0}", properties->DomainName ); Console::WriteLine( "Node type: {0:f}", properties->NodeType ); Console::WriteLine( "DHCP scope: {0}", properties->DhcpScopeName ); Console::WriteLine( "WINS proxy? {0}", properties->IsWinsProxy );
NetworkInformationPermission
for reading network information. Associated enumeration: Read.
.NET Framework
Available since 2.0
Available since 2.0
Show: