Bagikan melalui


ISessionStateItemCollection.Keys Properti

Definisi

Mendapatkan kumpulan nama variabel untuk semua nilai yang disimpan dalam koleksi.

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

Nilai Properti

NameObjectCollectionBase.KeysCollection yang berisi semua kunci koleksi.

Contoh

Contoh kode berikut menunjukkan implementasi Keys properti yang menggunakan SortedList untuk menyimpan nama dan nilai variabel sesi. Untuk contoh implementasi ISessionStateItemCollection lengkap antarmuka, lihat contoh yang disediakan dalam ISessionStateItemCollection gambaran umum antarmuka.

public NameObjectCollectionBase.KeysCollection Keys
{
  get { return (NameObjectCollectionBase.KeysCollection)pItems.Keys; }
}
Public ReadOnly Property Keys As NameObjectCollectionBase.KeysCollection _
  Implements ISessionStateItemCollection.Keys
  Get
    Return CType(pItems.Keys, NameObjectCollectionBase.KeysCollection)
  End Get
End Property

Berlaku untuk

Lihat juga