Class ProcessConfig
Central point for configuration
Inherited Members
Namespace: inetsoftware.ProcessBridge
Assembly: inetsoftware.Pdfc.dll
Syntax
public static class ProcessConfig
Properties
BaseDirectory
the base directory for the connected process.
Declaration
public static string BaseDirectory { get; set; }
Property Value
Type | Description |
---|---|
String |
CorePlugin
The classname of the core plugin.
Declaration
public static string CorePlugin { get; set; }
Property Value
Type | Description |
---|---|
String |
JarFile
Set main jar file of the bridged process
Declaration
public static string JarFile { get; set; }
Property Value
Type | Description |
---|---|
String |
JavaCommandLineSwitches
Set additional command line switches. For example to limit the used memory to 1024 MB you can use the value "-Xmx 1024m".
Declaration
public static string JavaCommandLineSwitches { get; set; }
Property Value
Type | Description |
---|---|
String |
NeededPlugins
The comma separeated names of needed plugins.
Declaration
public static string NeededPlugins { get; set; }
Property Value
Type | Description |
---|---|
String |
ProcessArguments
The arguments of process. If not set it will be generated. Can be used to debug the connected process.
Declaration
public static string ProcessArguments { get; set; }
Property Value
Type | Description |
---|---|
String |
ProcessConsole
Get or set the console of the connected process. The default is Console.Out.
Declaration
public static TextWriter ProcessConsole { get; set; }
Property Value
Type | Description |
---|---|
System.IO.TextWriter |
RequiredFiles
Files that are required and which are checked before calling.
Declaration
public static string[] RequiredFiles { get; set; }
Property Value
Type | Description |
---|---|
String[] |