JavaAppExecutableResource Constructors
Class Constructors 2 members
A resource that represents a Java application.
Constructor(string, string) Section titled Constructor(string, string) Initializes a new instance of the
JavaAppExecutableResource class. public class JavaAppExecutableResource{ public JavaAppExecutableResource( string name, string workingDirectory) { // ... }}Parameters
name string The name of the resource. workingDirectory string The working directory to use for the command. Constructor(string, string, string) Section titled Constructor(string, string, string) Initializes a new instance of the
JavaAppExecutableResource class. public class JavaAppExecutableResource{ public JavaAppExecutableResource( string name, string command, string workingDirectory) { // ... }}Parameters
name string The name of the resource. command string The command to execute. workingDirectory string The working directory to use for the command.