getProcedure

Back to index

Summary

Finds a procedure by its name.
projectName
Stringrequired
The name for the project that must be unique among all projects.
procedureName
Stringrequired
Name for the procedure; must be unique within the project.

Usage

Perl

$cmdr->getProcedure( "test-projectName", # projectName "test-procedureName" # procedureName );

ectool

ectool getProcedure \ "test-projectName" `# projectName` \ "test-procedureName" `# procedureName`

Examples

Perl

$cmdr->getProcedure("Default", "Run Full Build");

ectool

ectool getProcedure "Default" "Run Full Build"