PdfProcessorInstallationConfigureRuntime Method

Enables copying the runtime to a different location and installing dependencies before running the PDF processor. This function is intended for environments where installed dependencies are not persisted after a restart, It must be called before the first operation, which triggers the configuration setup. Changes made afterward will have no effect until the application is restarted

Definition

Namespace: HiQPdf.Next
Assembly: HiQPdf.Next.PdfProcessor (in HiQPdf.Next.PdfProcessor.dll) Version: 1.0.0
C#
public static void ConfigureRuntime(
	bool copyRuntime,
	string runtimeCopyPath
)

Parameters

copyRuntime  Boolean
Indicates whether the runtime should be copied to a different location before running the PDF processor. This option is useful if the application is deployed on a read-only file system and the runtime requires modifications, such as permission changes
runtimeCopyPath  String
The path where the runtime should be copied. If null, a default temporary folder will be used

See Also