This documentation is archived and is not being maintained.
SessionIDManager::InitializeRequest Method
Visual Studio 2010
Performs per-request initialization of the SessionIDManager object.
Assembly: System.Web (in System.Web.dll)
public: virtual bool InitializeRequest( HttpContext^ context, bool suppressAutoDetectRedirect, [OutAttribute] bool% supportSessionIDReissue ) sealed
Parameters
- context
- Type: System.Web::HttpContext
The HttpContext object that contains information about the current request.
- suppressAutoDetectRedirect
- Type: System::Boolean
true to redirect to determine cookie support; otherwise, false to suppress automatic redirection to determine cookie support.
- supportSessionIDReissue
- Type: System::Boolean%
When this method returns, contains a Boolean that indicates whether the SessionIDManager object supports issuing new session IDs when the original ID is out of date. This parameter is passed uninitialized.
Return Value
Type: System::Booleantrue to indicate the SessionIDManager object has done a redirect to determine cookie support; otherwise, false.
Implements
ISessionIDManager::InitializeRequest(HttpContext, Boolean, Boolean%)When the cookieless attribute of the sessionState element is set to AutoDetect, the SessionIDManager object will redirect to the same path to determine whether the connecting browser supports cookies. If the suppressAutoDetectRedirect parameter is false, the server will not perform this redirection.
The supportSessionIDReissue parameter will be returned false if the request is using cookies for session identification.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: