HtmlRendererMode Enumeration
How the HTML renderer process is managed for the HTML conversions of the application.
Namespace: Winnovative.Pdf.NextAssembly: Winnovative.Pdf.Next (in Winnovative.Pdf.Next.dll) Version: 20.75.0
public enum HtmlRendererMode
| PersistentProcess | 0 |
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.
|
| ProcessPerConversion | 1 |
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.
|