FormsAuthenticationUser(String, String) Constructeur
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.
Initialise une nouvelle instance de la classe FormsAuthenticationUser avec les paramètres passés.
public:
FormsAuthenticationUser(System::String ^ name, System::String ^ password);
public FormsAuthenticationUser (string name, string password);
new System.Web.Configuration.FormsAuthenticationUser : string * string -> System.Web.Configuration.FormsAuthenticationUser
Public Sub New (name As String, password As String)
Paramètres
- name
- String
Nom d'utilisateur.
- password
- String
Mot de passe d'utilisateur.
Exemples
L’exemple de code suivant montre comment créer un FormsAuthenticationUser objet.
// Define the user name.
string name = "userName";
// Define the encrypted password.
string password =
"5BAA61E4C9B93F3F0682250B6CF8331B7EE68FD8";
// Create a new FormsAuthenticationUser object.
FormsAuthenticationUser newformsAuthenticationUser =
new FormsAuthenticationUser(name, password);
' Define the user name.
Dim name As String = "userName"
' Define the encrypted password.
Dim password As String = _
"5BAA61E4C9B93F3F0682250B6CF8331B7EE68FD8"
' Create a new FormsAuthenticationUser object.
Dim newformsAuthenticationUser _
As New FormsAuthenticationUser(name, password)
Remarques
Ce constructeur crée un FormsAuthenticationUser objet à l’aide des paramètres passés.