IPGlobalProperties.IsWinsProxy Proprietà

Definizione

Ottiene un valore Boolean che specifica se il computer locale funge da proxy Windows Internet Name Service (WINS).

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

Valore della proprietà

true se il computer locale è un proxy WINS; in caso contrario, false.

Attributi

Eccezioni

Errore di una chiamata di funzione Win32.

Esempio

Nell'esempio di codice seguente vengono visualizzate le informazioni di rete per il computer locale.

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

Commenti

WINS fornisce un database distribuito per la registrazione e l'esecuzione di query sui nomi NetBIOS dinamici nei mapping degli indirizzi IP.

Si applica a