Response SubResponses Property C# API
Gets a list of Response objects that describe HTTP responses to sub-requests associated with the top-level Request sent to the web server.

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

public List<Response> SubResponses { get; }

Field Value

A List of Response objects corresponding to sub-requests sent to the server, in the order in which the responses were received.
Remarks

Once a server responds to a Request, eggPlant Performance will parse the HTML in the response, looking for additional resources that need to be downloaded (such as images, stylesheets or javascript files). These resources will be requested from the server. In addition, sub-requests that have been explicitly added using AddSubRequest(Url) will also be requested from the server.
See Also