Click or drag to resize
IWebServerBeforeRequestReceived Event
Raised on a background thread when the web server receives a request from a browser. Called before RequestReceived is raised.

Namespace: VirtualRadar.Interface.WebServer
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
event EventHandler<RequestReceivedEventArgs> BeforeRequestReceived

Value

Type: SystemEventHandlerRequestReceivedEventArgs
Remarks
This event allows plugins to intercept web requests before the main web site sees them. The main web site only hooks RequestReceived, if the plugin hooks this request and then sets Handled to true it will prevent the main web site from attempting to honour that request.
See Also