共用方式為


FormsAuthenticationUserCollection.Item[] 屬性

定義

取得指定的 FormsAuthenticationUser 集合項目。

多載

Item[Int32]

取得指定索引處的 FormsAuthenticationUser

Item[String]

取得具有指定名稱的 FormsAuthenticationUser

Item[Int32]

取得指定索引處的 FormsAuthenticationUser

public:
 property System::Web::Configuration::FormsAuthenticationUser ^ default[int] { System::Web::Configuration::FormsAuthenticationUser ^ get(int index); void set(int index, System::Web::Configuration::FormsAuthenticationUser ^ value); };
public System.Web.Configuration.FormsAuthenticationUser this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.FormsAuthenticationUser with get, set
Default Public Property Item(index As Integer) As FormsAuthenticationUser

參數

index
Int32

集合使用者的索引。

屬性值

FormsAuthenticationUser

包含使用者名稱和密碼的 FormsAuthenticationUser

範例

下列程式碼範例示範如何在指定的索引上存取使用者的認證。

// Get the user element at the specified index.
FormsAuthenticationUser storedUser3 = 
    formsAuthenticationCredentials.Users[0];
' Get the user element at the specified index.
  Dim storedUser3 As FormsAuthenticationUser = _
  formsAuthenticationCredentials.Users(0)

適用於

Item[String]

取得具有指定名稱的 FormsAuthenticationUser

public:
 property System::Web::Configuration::FormsAuthenticationUser ^ default[System::String ^] { System::Web::Configuration::FormsAuthenticationUser ^ get(System::String ^ name); };
public System.Web.Configuration.FormsAuthenticationUser this[string name] { get; }
member this.Item(string) : System.Web.Configuration.FormsAuthenticationUser
Default Public ReadOnly Property Item(name As String) As FormsAuthenticationUser

參數

name
String

使用者的名稱。

屬性值

FormsAuthenticationUser

包含使用者名稱和密碼的 FormsAuthenticationUser 物件。

範例

下列程式碼範例示範如何存取具有指定名稱之使用者的認證。

// Get the user element with the specified name.
FormsAuthenticationUser storedUser4 = 
    formsAuthenticationCredentials.Users["userName"];
' Get the user element with the specified name.
  Dim storedUser4 As FormsAuthenticationUser = _
  formsAuthenticationCredentials.Users("userName")

適用於