'DeclarationPublic Event BeforeRequest As EventHandler(Of BeforeRequestEventArgs)
public event EventHandler<BeforeRequestEventArgs> BeforeRequest
Event Data
The event handler receives an argument of type BeforeRequestEventArgs containing data related to this event. The following BeforeRequestEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| BaseUrl | Specifies the URL of the input document. |
| Cancel | A flag specifying if the request must be aborted. |
| Method | Specifies the request method. |
| Url | Specifies the request URL. |
See Also