StateRuntime.ProcessRequest Method (IntPtr, Int32, String, Int32, Int32, Int32, Int32, Int32, Int32, IntPtr)
Used by the ASP.NET state server to process session data.
Assembly: System.Web (in System.Web.dll)
Public Sub ProcessRequest ( tracker As IntPtr, verb As Integer, uri As String, exclusive As Integer, extraFlags As Integer, timeout As Integer, lockCookieExists As Integer, lockCookie As Integer, contentLength As Integer, content As IntPtr )
Parameters
- tracker
-
Type:
System.IntPtr
An IntPtr pointer to an object stored in the unmanaged ASP.NET state server.
- verb
-
Type:
System.Int32
The action to take on the object.
- uri
-
Type:
System.String
An identifier for the session.
- exclusive
-
Type:
System.Int32
The type of access to objects in the store.
- extraFlags
-
Type:
System.Int32
A value that indicates whether the current session is an uninitialized, cookieless session.
- timeout
-
Type:
System.Int32
The number of minutes the session data is stored.
- lockCookieExists
-
Type:
System.Int32
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
-
Type:
System.Int32
The owner of the lock on the session state.
- contentLength
-
Type:
System.Int32
The length, in bytes, of the data stored for the session.
- content
-
Type:
System.IntPtr
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.
Available since 2.0