Edit

Share via


SessionStateStoreProviderBase.EndRequest(HttpContext) Method

Definition

Called by the SessionStateModule object at the end of a request.

public abstract void EndRequest(System.Web.HttpContext context);

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.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also