SessionStateStoreProviderBase.EndRequest(HttpContext) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called by the SessionStateModule object at the end of a request.
public:
abstract void EndRequest(System::Web::HttpContext ^ context);
public abstract void EndRequest (System.Web.HttpContext context);
abstract member EndRequest : System.Web.HttpContext -> unit
Public MustOverride Sub EndRequest (context As HttpContext)
Parameters
- context
- HttpContext
The HttpContext for the current request.
Examples
For an example of a session-state store provider implementation, see Implementing a Session-State Store Provider.
Remarks
The SessionStateModule object calls the EndRequest method at the end of a request for an ASP.NET page, during the EndRequest event. You can use the EndRequest method to perform any per-request cleanup required by your session-state store provider.