Class RequestEvents
Holds events that allow performing of custom logic at specific points within the request processing.
public sealed class RequestEvents
- Inheritance
-
objectRequestEvents
- 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
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
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
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
Prepare
Occurs before the Begin event.
public static readonly SimpleHandler Prepare
Field Value
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
Remarks
Response time can be affected by long running operations.