Bagikan melalui


IPGlobalProperties.HostName Properti

Definisi

Mendapatkan nama host untuk komputer lokal.

public:
 abstract property System::String ^ HostName { System::String ^ get(); };
public abstract string HostName { get; }
member this.HostName : string
Public MustOverride ReadOnly Property HostName As String

Nilai Properti

String Instans yang berisi nama NetBIOS komputer.

Pengecualian

Panggilan fungsi Win32 gagal.

Contoh

Contoh kode berikut menampilkan informasi jaringan untuk komputer lokal.

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

Keterangan

Properti ini memanggil ke fungsi Pembantu IP asli, GetNetworkParams, yang mengembalikan struktur FIXED_INFO yang berisi string nama host NetBIOS. String nama host dipotong ketika melebihi 15 karakter.

Nama NetBIOS komputer harus unik dalam jaringan dan tidak sepenuhnya memenuhi syarat dengan nama domain.

Berlaku untuk