NetworkCredential.UserName Property
.NET Framework 2.0
Gets or sets the user name associated with the credentials.
Namespace: System.Net
Assembly: System (in system.dll)
Assembly: System (in system.dll)
The following code example uses the UserName property to set the user name associated with the credentials.
// Create an empty instance of the NetworkCredential class. NetworkCredential myCredentials = new 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();
// Create an empty instance of the NetworkCredential class.
NetworkCredential myCredentials = new NetworkCredential("", "", "");
myCredentials.set_Domain(domain);
myCredentials.set_UserName(userName);
myCredentials.set_Password(passwd);
// Create a WebRequest with the specified URL.
WebRequest myWebRequest = WebRequest.Create(url);
myWebRequest.set_Credentials(myCredentials);
Console.WriteLine("\n\nUser Credentials:- Domain : {0} , "
+ "UserName : {1} , Password : {2}",
myCredentials.get_Domain(), myCredentials.get_UserName(),
myCredentials.get_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 read the user name from the system. Associated enumeration: EnvironmentPermissionAccess.Read
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.