Ampere.TransientNode.Run C# (CSharp) Method

Run() public method

public Run ( string fileName, string arguments ) : RunNode
fileName string
arguments string
return RunNode
        public RunNode Run(string fileName, string arguments)
        {
            var node = new ExternalNode(fileName, arguments, RunOptions.RedirectError) { OutputNode = this };
            InputNode = node;

            return node;
        }

Same methods

TransientNode::Run ( string fileName, string arguments, RunOptions options ) : RunNode
TransientNode