FormsAuthenticationUser.Name 属性

定义

获取或设置登录用户名。

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

属性值

该应用程序需要的登录用户名。

属性

示例

下面的代码示例说明如何使用 Name 属性。 请参阅类主题中的 FormsAuthenticationUser 代码示例,了解如何获取 节。


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

适用于