Table of Contents

Class RequestEvents

Namespace
CMS.Base
Assembly
CMS.Base.dll

Holds events that allow performing of custom logic at specific points within the request processing.

public sealed class RequestEvents
Inheritance
object
RequestEvents
Extension Methods

Remarks

These request events allow you to handle most usable events from application without the need to create a custom HTTP module or edit global.asax.

The events are represented by fields of the SimpleHandler type. Handler methods need to be assigned to the Execute event of individual fields.

The events are not raised out of web-based applications without the CMSApplication module (when using the Kentico API externally).

Fields

Begin

Occurs as the first event in the HTTP pipeline chain of execution when ASP.NET responds to a request.

public static readonly SimpleHandler Begin

Field Value

SimpleHandler

End

Occurs as the last event in the HTTP pipeline chain of execution when ASP.NET responds to a request.

public static readonly SimpleHandler End

Field Value

SimpleHandler

Finalize

Occurs as the last event in the pipeline and can be used to clean up and release resources used by the request.

public static readonly SimpleHandler Finalize

Field Value

SimpleHandler

Remarks

Response time can be affected by long running operations.

PreSendRequestHeaders

Occurs just before ASP.NET sends HTTP headers to the client.

public static readonly SimpleHandler PreSendRequestHeaders

Field Value

SimpleHandler

Prepare

Occurs before the Begin event.

public static readonly SimpleHandler Prepare

Field Value

SimpleHandler

Remarks

This event is related to the RequestEvents lifecycle only.

RunEndRequestTasks

Occurs after the End event has finished.

public static readonly SimpleHandler RunEndRequestTasks

Field Value

SimpleHandler

Remarks

Response time can be affected by long running operations.