SessionStateStoreData.SessionStateStoreData Constructor
Assembly: System.Web (in system.web.dll)
public: SessionStateStoreData ( ISessionStateItemCollection^ sessionItems, HttpStaticObjectsCollection^ staticObjects, int timeout )
public SessionStateStoreData ( ISessionStateItemCollection sessionItems, HttpStaticObjectsCollection staticObjects, int timeout )
public function SessionStateStoreData ( sessionItems : ISessionStateItemCollection, staticObjects : HttpStaticObjectsCollection, timeout : int )
Not applicable.
Parameters
- sessionItems
The session variables and values for the current session.
- staticObjects
The HttpStaticObjectsCollection for the current session.
- timeout
The Timeout for the current session.
The SessionStateStoreData class is used to represent session-state data for a session store to the SessionStateModule. The SessionStateStoreData object contains the session-state variable names and values, static object references, and Timeout information for the current session.
The SessionStateStoreData class is used by ASP.NET and implementers of a custom session-state store to pass session-state information to and from the SessionStateModule.
Custom session-store implementers construct a SessionStateStoreData object in implementations of the GetItem, GetItemExclusive, and CreateNewStoreData methods.