IPGlobalProperties.GetIPGlobalProperties Methode

Definition

Ruft ein Objekt ab, das Informationen über die Statistiken zu den Netzwerkverbindungen und zum Datenverkehr des lokalen Computers bereitstellt.

public:
 static System::Net::NetworkInformation::IPGlobalProperties ^ GetIPGlobalProperties();
public static System.Net.NetworkInformation.IPGlobalProperties GetIPGlobalProperties ();
[System.Runtime.Versioning.UnsupportedOSPlatform("illumos")]
[System.Runtime.Versioning.UnsupportedOSPlatform("solaris")]
public static System.Net.NetworkInformation.IPGlobalProperties GetIPGlobalProperties ();
static member GetIPGlobalProperties : unit -> System.Net.NetworkInformation.IPGlobalProperties
[<System.Runtime.Versioning.UnsupportedOSPlatform("illumos")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("solaris")>]
static member GetIPGlobalProperties : unit -> System.Net.NetworkInformation.IPGlobalProperties
Public Shared Function GetIPGlobalProperties () As IPGlobalProperties

Gibt zurück

IPGlobalProperties

Ein IPGlobalProperties-Objekt, das Informationen über den lokalen Computer enthält.

Attribute

Beispiele

Im folgenden Codebeispiel werden Informationen zum lokalen Computer angezeigt.

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 );
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);

Hinweise

Das von dieser Methode zurückgegebene Objekt ist ein vom System bereitgestellter Typ, der von der IPGlobalProperties Klasse abgeleitet wird.

Gilt für