In This Topic

BeforeRequest Event (DocuViewareEventsHandler)

In This Topic
Specifies the event handler for a request.
Syntax
'Declaration
 
Public 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.

PropertyDescription
Specifies the URL of the input document.  
A flag specifying if the request must be aborted.  
Specifies the request method.  
Specifies the request URL.  
See Also