StateRuntime.ProcessRequest Method (IntPtr, Int32, String, Int32, Int32, Int32, Int32, Int32, IntPtr)

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

Namespace: System.Web.SessionState
Assembly: System.Web (in system.web.dll)

public:
virtual void ProcessRequest (
	IntPtr tracker, 
	int verb, 
	String^ uri, 
	int exclusive, 
	int timeout, 
	int lockCookieExists, 
	int lockCookie, 
	int contentLength, 
	IntPtr content
) sealed
public final void ProcessRequest (
	IntPtr tracker, 
	int verb, 
	String uri, 
	int exclusive, 
	int timeout, 
	int lockCookieExists, 
	int lockCookie, 
	int contentLength, 
	IntPtr content
)
public final function ProcessRequest (
	tracker : IntPtr, 
	verb : int, 
	uri : String, 
	exclusive : int, 
	timeout : int, 
	lockCookieExists : int, 
	lockCookie : int, 
	contentLength : int, 
	content : IntPtr
)
Not applicable.

Parameters

tracker

An IntPtr pointer to an object stored in the unmanaged ASP.NET state server.

verb

The action to take on the object.

uri

An identifier for the session.

exclusive

The type of access to objects in the store.

timeout

The number of minutes the session data is stored.

lockCookieExists

A value that indicates whether the lock cookie exists in the original request from the ASP.NET Web server to the ASP.NET state server.

lockCookie

The owner of the lock on the session state.

contentLength

The length, in bytes, of the data stored for the session.

content

An IntPtr pointer to the content stored for the session in the unmanaged ASP.NET state server.

ASP.NET supports the option of managing session state out-of-process using a Windows service called the ASP.NET state service. The ProcessRequest method is used by unmanaged code in this service to manage the session data.

This member supports the .NET Framework infrastructure implementation of the ASP.NET state service and is not intended be used directly from your code. For more information about session-state storage options, see Session-State Modes.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

Community Additions

ADD
Show: