This documentation is archived and is not being maintained.

HttpSessionState Members

HttpSessionState overview

Public Properties

public propertyCodePage Gets or sets the code page identifier for the current session.
public propertyContents Gets a reference to the current session-state object.
public propertyCount Gets the number of items in the session-state collection.
public propertyIsCookieless Gets a value indicating whether the session ID is embedded in the URL or stored in an HTTP cookie.
public propertyIsNewSession Gets a value indicating whether the session was created with the current request.
public propertyIsReadOnly Gets a value indicating whether the session is read-only.
public propertyIsSynchronized Gets a value indicating whether access to the collection of session-state values is synchronized (thread safe).
public propertyItem Overloaded. Gets or sets individual session values.

In C#, this property is the indexer for the HttpSessionState class.

public propertyKeys Gets a collection of the keys of all values stored in the session.
public propertyLCID Gets or sets the locale identifier (LCID) of the current session.
public propertyMode Gets the current session-state mode.
public propertySessionID Gets the unique session ID used to identify the session.
public propertyStaticObjects Gets a collection of objects declared by <object Runat="Server" Scope="Session"/> tags within the ASP.NET application file global.asax.
public propertySyncRoot Gets an object that can be used to synchronize access to the collection of session-state values.
public propertyTimeout Gets and sets the time-out period (in minutes) allowed between requests before the session-state provider terminates the session.

Public Methods

public methodAbandon Cancels the current session.
public methodAdd Adds a new item to session state.
public methodClear Clears all values from session state.
public methodCopyTo Copies the collection of session-state values to a one-dimensional array, starting at the specified index in the array.
public methodEquals (inherited from Object) Overloaded. Determines whether two Object instances are equal.
public methodGetEnumerator Gets an enumerator of all session state-values in the current session.
public methodGetHashCode (inherited from Object) Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
public methodGetType (inherited from Object) Gets the Type of the current instance.
public methodRemove Deletes an item from the session-state collection.
public methodRemoveAll Clears all session-state values.
public methodRemoveAt Deletes an item at a specified index from the session-state collection.
public methodToString (inherited from Object) Returns a String that represents the current Object.

Protected Methods

protected methodFinalize (inherited from Object) Overridden. Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.

In C# and C++, finalizers are expressed using destructor syntax.

protected methodMemberwiseClone (inherited from Object) Creates a shallow copy of the current Object.

See Also

HttpSessionState Class | System.Web.SessionState Namespace

Show: