WebBrowserVirtualUser ProcessResponse Method C# API
This method is called immediately after a Response is returned from the web server.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public virtual void ProcessResponse(
	Response response
)

Parameters

response
Type: Facilita.Web Response
The response that has just arrived from the web server.
Remarks

If Send  or SendTopLevel  is called within a Script() method, this method will be called before the Response object is returned. The response parameter is a reference to the Response object which is about to be returned by the Send() (or SendTopLevel()) method. It can be modified prior to returning.

Override this method to modify every response (or a selection of responses based on criteria) after they are returned by the web server.

See Also