Class ProcessConfig
Central point for configuration
Inheritance
System.Object
ProcessConfig
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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 |
---|---|
System.String |
CorePlugin
The classname of the core plugin.
Declaration
public static string CorePlugin { get; set; }
Property Value
Type | Description |
---|---|
System.String |
JarFile
Set main jar file of the bridged process
Declaration
public static string JarFile { get; set; }
Property Value
Type | Description |
---|---|
System.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 |
---|---|
System.String |
NeededPlugins
The comma separeated names of needed plugins.
Declaration
public static string NeededPlugins { get; set; }
Property Value
Type | Description |
---|---|
System.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 |
---|---|
System.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 |
---|---|
System.String[] |