StateRuntime Class

Definition

Manages session data stored in the ASP.NET state service. This class cannot be inherited.

public ref class StateRuntime sealed : System::Web::SessionState::IStateRuntime
public sealed class StateRuntime : System.Web.SessionState.IStateRuntime
type StateRuntime = class
    interface IStateRuntime
Public NotInheritable Class StateRuntime
Implements IStateRuntime
Inheritance
StateRuntime
Implements

Remarks

ASP.NET supports the option of managing session state out-of-process using a Windows service called the ASP.NET state service. The StateRuntime class is used by unmanaged code in this service to manage session data. This class supports the .NET Framework infrastructure implementation of the ASP.NET state service and is not intended be used directly from your code.

The ASP.NET state service is not the default method of ASP.NET session-state management; ASP.NET supports an in-process management of session state by default. It also supports a second out-of-process option that manages session state in a Microsoft SQL Server database and enables custom session-state management solutions. For more information about session-state storage options, see Session-State Modes.

Constructors

StateRuntime()

Initializes a new instance of the StateRuntime class.

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)
ProcessRequest(IntPtr, Int32, String, Int32, Int32, Int32, Int32, Int32, Int32, IntPtr)

Used by the ASP.NET state server to process session data.

ProcessRequest(IntPtr, Int32, String, Int32, Int32, Int32, Int32, Int32, IntPtr)

Used by the ASP.NET state server to process session data.

StopProcessing()

Stops the processing of session data stored in the ASP.NET state server.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also