FormsAuthenticationUser.Password Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit le mot de passe d'utilisateur.
public:
property System::String ^ Password { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("password", DefaultValue="", IsRequired=true)]
[System.Configuration.StringValidator]
public string Password { get; set; }
[<System.Configuration.ConfigurationProperty("password", DefaultValue="", IsRequired=true)>]
[<System.Configuration.StringValidator>]
member this.Password : string with get, set
Public Property Password As String
Valeur de propriété
Mot de passe de l'utilisateur requis par l'application.
- Attributs
Exemples
L'exemple de code suivant montre comment utiliser la propriété Password. Reportez-vous à l’exemple de code de la FormsAuthenticationUser rubrique de classe pour savoir comment obtenir la section.
// Using the Password property.
// Get current password.
string currentPassword =
formsAuthenticationUsers[0].Password;
// Set a SHA1 encrypted password.
// This example uses the SHA1 algorithm.
// Due to collision problems with SHA1, Microsoft recommends SHA256 or better.
formsAuthenticationUsers[0].Password =
"5BAA61E4C9B93F3F0682250B6CF8331B7EE68FD8";
' Using the Password property.
' Get current password.
Dim currentPassword As String = _
formsAuthenticationUsers(0).Password
' Set a SHA1 encrypted password.
' This example uses the SHA1 algorithm.
' Due to collision problems with SHA1, Microsoft recommends SHA256 or better.
formsAuthenticationUsers(0).Password = _
"5BAA61E4C9B93F3F0682250B6CF8331B7EE68FD8"