RequestEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Represent a method that handles the BeginRequest, and EndRequest events. Since 3.5.5
- C#
- VB.NET
public delegate void RequestEventHandler(Object sender, RequestEventArgs e)
Public Delegate Sub RequestEventHandler(ByVal sender As [Object], ByVal e As RequestEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | Current application context. |
| e | RequestEventArgs | A RequestEventArgs instance with the data for the event handlers. |
Fired By
| Name | Description |
|---|---|
| Application.BeginRequest | Fired at the beginning of every request. |
| Application.EndRequest | Fired at the end of every request. |