Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

IPGlobalProperties.DomainName Property

Definition

Namespace:
System.Net.NetworkInformation
Assemblies:
netstandard.dll, System.Net.NetworkInformation.dll
Assembly:
System.Net.NetworkInformation.dll
Assembly:
System.dll
Assembly:
netstandard.dll
Source:
IPGlobalProperties.cs
Source:
IPGlobalProperties.cs
Source:
IPGlobalProperties.cs
Source:
IPGlobalProperties.cs
Source:
IPGlobalProperties.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets the domain in which the local computer is registered.

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

Property Value

A String instance that contains the computer's domain name. If the computer does not belong to a domain, returns Empty.

Exceptions

A Win32 function call failed.

Examples

The following code example displays network information for the local computer.

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

Applies to


Feedback

Was this page helpful?