Condividi tramite


FormsAuthenticationUser.Name Proprietà

Definizione

Ottiene o imposta il nome utente di accesso.

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

Valore della proprietà

String

Nome utente di accesso richiesto dall'applicazione.

Attributi

Esempio

Nell'esempio di codice riportato di seguito viene illustrato come utilizzare la proprietà Name. Fare riferimento all'esempio di codice nell'argomento della FormsAuthenticationUser classe per informazioni su come ottenere la sezione .


// 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"

Si applica a