WebBrowser DefaultKeepContent Property C# API
Gets or sets a value that indicates whether to keep the content of responses by default, 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 DefaultKeepContent { get; set; }

Field Value

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

If this property is set to false then the content of every response to this Request will be discarded, and it will not be possible to examine the content using the Response class (but other information will still be accessible in the Response objects).
See Also