Property InheritScriptOutput
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
InheritScriptOutput
Gets or sets a value indicating whether the script output of the subscript merges the full script output of the current running script.
public bool InheritScriptOutput { get; set; }
Property Value
- bool
true
if the script output of the subscript merges the full script output of the current running script; otherwise,false
.
Examples
var scriptOptions = engine.PrepareSubScript("MyScript");
scriptOptions.InheritScriptOutput = true;
scriptOptions.StartScript();
Remarks
Default: true
.
If false
, the script output of the subscript has no impact on the script output of the current script.
Feature introduced in DataMiner 10.0.2 (RN 23936).