IPGlobalProperties.DomainName Özellik

Tanım

Yerel bilgisayarın kayıtlı olduğu etki alanını alır.

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

Özellik Değeri

String Bilgisayarın etki alanı adını içeren bir örnek. Bilgisayar bir etki alanına ait değilse döndürür Empty.

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

Şunlara uygulanır