WebBrowser DefaultKeepAllSubRequestContent Property C# API
Gets or sets a value that indicates whether the content of responses to sub-requests should be kept, for any subsequent Request objects created by this WebBrowser.

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

public bool DefaultKeepAllSubRequestContent { get; set; }

Field Value

true if the content of responses to sub-requests will be kept by default; otherwise, false.
Remarks

If this property is set to false, then all the responses to sub-requests will be discarded.

Caution note Caution
There is a significant performance penalty to keep the sub-request content, so this property should only be set to true if it is necessary to examine the content of sub-responses.

See Also