HtmlRendererMode Enumeration

How the HTML renderer process is managed for the HTML conversions of the application.

Definition

Namespace: Winnovative.Pdf.Next
Assembly: Winnovative.Pdf.Next (in Winnovative.Pdf.Next.dll) Version: 20.75.0
C#
public enum HtmlRendererMode

Members

PersistentProcess0 A single renderer process is started at the first conversion (or by StartPersistentRenderer(String)) and reused by the following ones. Each conversion runs in its own browser and its own private context inside that process, so conversions share nothing but the process. The process stops when the application exits, when StopPersistentRenderer is called or after IdleTimeoutSeconds without conversions. This is the default mode.
ProcessPerConversion1 A renderer process is started for each conversion and exits when the conversion completes. Nothing stays resident between conversions and each conversion pays the process startup.

See Also