次の方法で共有


FormsAuthenticationUserCollection.AllKeys プロパティ

定義

コレクションのすべてのキーを取得します。

public:
 property cli::array <System::String ^> ^ AllKeys { cli::array <System::String ^> ^ get(); };
public string[] AllKeys { get; }
member this.AllKeys : string[]
Public ReadOnly Property AllKeys As String()

プロパティ値

String[]

コレクション キーが格納されている string 配列。

次のコード例は、AllKeys プロパティの使用方法を示しています。

// Get the collection keys.
object [] keys = 
    formsAuthenticationCredentials.Users.AllKeys;
' Get the collection keys.
  Dim keys As String() = _
  formsAuthenticationCredentials.Users.AllKeys

注釈

このメソッドを使用して、コレクションに FormsAuthenticationUser 含まれるオブジェクトにアクセスできます。

適用対象