IPGlobalProperties.DomainName Property
.NET Framework 4.5
Gets the domain in which the local computer is registered.
Assembly: System (in System.dll)
| Exception | Condition |
|---|---|
| NetworkInformationException | A Win32 function call failed. |
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);
- NetworkInformationPermission
for reading network information. Associated enumeration: Read.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.