FormsAuthenticationUserCollection.Item[] プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定された 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")
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET