SessionStateStoreData Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents session-state data for a session store.
public ref class SessionStateStoreData
public class SessionStateStoreData
type SessionStateStoreData = class
Public Class SessionStateStoreData
- Inheritance
-
SessionStateStoreData
Remarks
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.
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.
Constructors
SessionStateStoreData(ISessionStateItemCollection, HttpStaticObjectsCollection, Int32) |
Creates a new instance of the SessionStateStoreData class. |
Properties
Items |
The session variables and values for the current session. |
StaticObjects |
Gets a collection of objects declared by |
Timeout |
Gets or sets the amount of time, in minutes, allowed between requests before the session-state provider terminates the session. |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |