FormsAuthenticationUser.Name 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 nom d'utilisateur de connexion.
public:
property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Web.Configuration.LowerCaseStringConverter))]
[System.Configuration.ConfigurationProperty("name", DefaultValue="", IsKey=true, IsRequired=true)]
[System.Configuration.StringValidator]
public string Name { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Web.Configuration.LowerCaseStringConverter))>]
[<System.Configuration.ConfigurationProperty("name", DefaultValue="", IsKey=true, IsRequired=true)>]
[<System.Configuration.StringValidator>]
member this.Name : string with get, set
Public Property Name As String
Valeur de propriété
Nom d'utilisateur de connexion requis par l'application.
- Attributs
Exemples
L'exemple de code suivant montre comment utiliser la propriété Name. Reportez-vous à l’exemple de code dans la FormsAuthenticationUser rubrique de classe pour savoir comment obtenir la section .
// Using the Name property.
// Get current name.
string currentName =
formsAuthenticationUsers[0].Name;
// Set a new name.
formsAuthenticationUsers[0].Name = "userName";
' Using the Name property.
' Get current name.
Dim currentName As String = _
formsAuthenticationUsers(0).Name
' Set a new name.
formsAuthenticationUsers(0).Name = "userName"
S’applique à
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.