SessionStateItemCollection.Keys Property

 

Gets a collection of the variable names for all values stored in the collection.

Namespace:   System.Web.SessionState
Assembly:  System.Web (in System.Web.dll)

Public Overrides ReadOnly Property Keys As NameObjectCollectionBase.KeysCollection

Property Value

Type: System.Collections.Specialized.NameObjectCollectionBase.KeysCollection

The NameObjectCollectionBase.KeysCollection collection that contains all the collection keys.

Each key is a string that represents a variable name for a value stored in the collection.

The following code example gets the variable names in a SessionStateItemCollection collection using the variable names returned by the Keys property.

Dim items As SessionStateItemCollection = New SessionStateItemCollection()

items("LastName") = "Wilson"
items("FirstName") = "Dan"

For Each s As String In items.Keys
  Response.Write("items(""" & s & """) = " & items(s).ToString() & "<br />")
Next

.NET Framework
Available since 2.0
Return to top
Show: