SessionStateStoreData.Items Property
.NET Framework 2.0
The session variables and values for the current session.
Namespace: System.Web.SessionState
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual property ISessionStateItemCollection^ Items { ISessionStateItemCollection^ get (); }
/** @property */ public ISessionStateItemCollection get_Items ()
public function get Items () : ISessionStateItemCollection
Not applicable.
Property Value
An ISessionStateItemCollection object that contains variables and values for the current session.The Items property references the session-state variables that are exposed to ASP.NET application code using the HttpSessionState class, which is accessed using the Session property of the current HttpContext or the Page instance.
By default, session-state variables are managed using the SessionStateItemCollection object. Custom session-store implementers can supply their own implementation of the ISessionStateItemCollection interface.
Community Additions
ADD
Show: