Method GetDummy
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
GetDummy(int)
Retrieves an object representing one of the script dummies.
public ScriptDummy GetDummy(int id)
Parameters
id
intThe dummy ID.
Returns
- ScriptDummy
The object representing the specified script dummy or null if the dummy with the specified ID is not found.
Examples
ScriptDummy dummyTest = engine.GetDummy(5);
Remarks
Through this object, actions like "set parameter" can be executed.
GetDummy(string)
Retrieves an object representing one of the script dummies.
public ScriptDummy GetDummy(string name)
Parameters
name
stringThe dummy name.
Returns
- ScriptDummy
The object representing the specified script dummy or null if the dummy with the specified name is not found.
Examples
ScriptDummy dummyTest = engine.GetDummy("matrix");
Remarks
Through this object, actions like "set parameter" can be executed.