次の方法で共有


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

次のコード例は、指定したインデックスにあるユーザーの資格情報にアクセスする方法を示しています。

// 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 オブジェクト。

次のコード例は、指定した名前のユーザーの資格情報にアクセスする方法を示しています。

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

適用対象