UtilGeckoFxBackoffCount Property

Gets or sets the maximum number of times the content of a webpage will do timer-based reflows.

Rather than wait until a page has completely downloaded to display it to the user, Mozilla applications will periodically render what has been received to that point.

Because reflowing the page every time additional data is received greatly slows down total page load time, a timer was added so that the page would not reflow too often.

After this number has been reached, the page will only reflow once it is finished downloading.

Definition

Namespace: DevCase.ThirdParty.GeckoFx
Assembly: DevCase.net48.ThirdParty.GeckoFx (in DevCase.net48.ThirdParty.GeckoFx.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static int BackoffCount { get; set; }

Property Value

Int32
The maximum number of times the content of a webpage will do timer-based reflows.

Remarks

Recommended value: 5

See Also