次の方法で共有


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

適用対象

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

適用対象