Skip to content
DocsTry Aspire
DocsTry

JavaAppExecutableResource Constructors

ClassConstructors2 members
A resource that represents a Java application.
Initializes a new instance of the JavaAppExecutableResource class.
public class JavaAppExecutableResource
{
public JavaAppExecutableResource(
string name,
string workingDirectory)
{
// ...
}
}
namestringThe name of the resource.
workingDirectorystringThe 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)
{
// ...
}
}
namestringThe name of the resource.
commandstringThe command to execute.
workingDirectorystringThe working directory to use for the command.