NetworkCredential::Domain Property
.NET Framework 4
Gets or sets the domain or computer name that verifies the credentials.
Assembly: System (in System.dll)
The following code example uses the Domain property to set the domain associated with the credentials.
// Create an empty instance of the NetworkCredential class. NetworkCredential^ myCredentials = gcnew NetworkCredential( "","","" ); myCredentials->Domain = domain; myCredentials->UserName = username; myCredentials->Password = passwd; // Create a WebRequest with the specified URL. WebRequest^ myWebRequest = WebRequest::Create( url ); myWebRequest->Credentials = myCredentials; Console::WriteLine( "\n\nUser Credentials:- Domain : {0} , UserName : {1} , Password : {2}", myCredentials->Domain, myCredentials->UserName, myCredentials->Password ); // Send the request and wait for a response. Console::WriteLine( "\n\nRequest to Url is sent.Waiting for response...Please wait ..." ); WebResponse^ myWebResponse = myWebRequest->GetResponse(); // Process the response. Console::WriteLine( "\nResponse received sucessfully" ); // Release the resources of the response object. myWebResponse->Close();
- EnvironmentPermission
to get the system domain. Associated enumeration: EnvironmentPermissionAccess::Read
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.