다음을 통해 공유


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 컬렉션에 포함 된 개체입니다.

적용 대상