Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

IPGlobalProperties::DomainName Property

 

Gets the domain in which the local computer is registered.

Namespace:   System.Net.NetworkInformation
Assembly:  System (in System.dll)

public:
property String^ DomainName {
	virtual String^ get() abstract;
}

Property Value

Type: System::String^

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

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.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft