Aracılığıyla paylaş


IPGlobalProperties.NodeType Özellik

Tanım

Yerel bilgisayarın Ağ Temel Giriş/Çıkış Sistemi (NetBIOS) düğüm türünü alır.

public:
 abstract property System::Net::NetworkInformation::NetBiosNodeType NodeType { System::Net::NetworkInformation::NetBiosNodeType get(); };
public abstract System.Net.NetworkInformation.NetBiosNodeType NodeType { get; }
member this.NodeType : System.Net.NetworkInformation.NetBiosNodeType
Public MustOverride ReadOnly Property NodeType As NetBiosNodeType

Özellik Değeri

Bir NetBiosNodeType değer.

Özel durumlar

Win32 işlev çağrısı başarısız oldu.

Örnekler

Aşağıdaki kod örneği, yerel bilgisayar için ağ bilgilerini görüntüler.

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

Açıklamalar

Düğüm türü, NetBIOS adlarının IP adreslerine nasıl çözümleneceğini belirler. Ek bilgi için bkz. sınıfa NetBiosNodeType genel bakış.

Şunlara uygulanır