次の方法で共有


IHttpSessionState.Keys プロパティ

定義

セッション状態項目のコレクションに格納されているすべての値のキーのコレクションを取得します。

public:
 property System::Collections::Specialized::NameObjectCollectionBase::KeysCollection ^ Keys { System::Collections::Specialized::NameObjectCollectionBase::KeysCollection ^ get(); };
public System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get; }
member this.Keys : System.Collections.Specialized.NameObjectCollectionBase.KeysCollection
Public ReadOnly Property Keys As NameObjectCollectionBase.KeysCollection

プロパティ値

すべてのセッション項目キーが格納されている NameObjectCollectionBase.KeysCollection

次のコード例では、 インターフェイスの プロパティをKeysIHttpSessionState実装して、内部セッション状態項目コレクションからセッション状態項目キー名のコレクションを返します。

public NameObjectCollectionBase.KeysCollection Keys
{
  get { return pSessionItems.Keys; }
}
Public ReadOnly Property Keys As NameObjectCollectionBase.KeysCollection _
  Implements IHttpSessionState.Keys

  Get
    Return pSessionItems.Keys
  End Get
End Property

適用対象

こちらもご覧ください