Table of Contents
WebView.BeforeSendHeaders Event

Occurs before the headers are sent to the server.

Syntax
 public event RequestEventHandler BeforeSendHeaders;
Event Data

The event handler receives an argument of type RequestEventArgs containing data related to this event. The following RequestEventArgs properties provide information specific to this event.

Name Description
FrameName Gets the name of the frame if this request is being loaded into a frame.
Request Gets the Request object.
Task Gets the NavigationTask object associated to the request.
Remarks

You can examine the headers in this event, but you can not modify the Request object at this stage.

See Also