Table of Contents
WebView.AfterReceiveHeaders Event

Occurs after the headers have been received from the server.

Syntax
 public event ResponseEventHandler AfterReceiveHeaders;
Event Data

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

Name Description
FrameNameGets the name of the frame if this request is being loaded into a frame.
RequestGets the Request object.
Response Gets the Response object.
TaskGets the NavigationTask object associated to the request.
Remarks

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

See Also