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.

NetworkCredential::Password Property

 

Gets or sets the password for the user name associated with the credentials.

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

public:
property String^ Password {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The password associated with the credentials. If this NetworkCredential instance was initialized with the password parameter set to null, then the Password property will return an empty string.

The following code example uses the Password property to set the password 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();

SecurityPermission

to get the user password. Associated enumeration: SecurityPermissionFlag::UnmanagedCode

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 3.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft