IdentitySection.Password Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating the password to use for impersonation.
public:
property System::String ^ Password { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("password", DefaultValue="")]
public string Password { get; set; }
[<System.Configuration.ConfigurationProperty("password", DefaultValue="")>]
member this.Password : string with get, set
Public Property Password As String
Property Value
The password to use for impersonation.
- Attributes
Examples
The following code example shows how to access the Password property. Refer to the code example of the IdentitySection class to learn how to access the section.
// Get the Password property value.
string currentPassword = identitySection.Password;
// Set the Password property value.
identitySection.Password = "userPassword";
' Get the Password property value.
Dim currentPassword As String = identitySection.Password
' Set the Password property value.
identitySection.Password = "userPassword"
Remarks
Because the password is stored in clear text, an authenticated user with proper credentials on the domain where the server resides can read it.
Note
For security reasons, the identity section supports storage of the encrypted UserName and Password.