Aracılığıyla paylaş


IPGlobalProperties.IsWinsProxy Özellik

Tanım

Boolean Yerel bilgisayarın windows internet ad hizmeti (WINS) ara sunucusu olarak çalışıp çalışmadığını belirten bir değer alır.

public:
 abstract property bool IsWinsProxy { bool get(); };
public abstract bool IsWinsProxy { get; }
[System.Runtime.Versioning.UnsupportedOSPlatform("android")]
public abstract bool IsWinsProxy { get; }
member this.IsWinsProxy : bool
[<System.Runtime.Versioning.UnsupportedOSPlatform("android")>]
member this.IsWinsProxy : bool
Public MustOverride ReadOnly Property IsWinsProxy As Boolean

Özellik Değeri

true yerel bilgisayar bir WINS proxy'siyse; aksi takdirde , false.

Öznitelikler

Ö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

WINS, dinamik NetBIOS adlarını IP adresi eşlemelerine kaydetmek ve sorgulamak için dağıtılmış bir veritabanı sağlar.

Şunlara uygulanır