Class AutomationEntryPoint
- Namespace
- Skyline.DataMiner.Net.Automation
- Assembly
- SLNetTypes.dll
Represents an Automation entry point.
[Serializable]
public class AutomationEntryPoint
- Inheritance
-
AutomationEntryPoint
- Extension Methods
Examples
var customEntryPoint = new Skyline.DataMiner.Net.Automation.AutomationEntryPoint();
customEntryPoint.EntryPointType = Skyline.DataMiner.Net.Automation.AutomationEntryPoint.Types.AutomationEntryPointTest;
customEntryPoint.Parameters.AddRange(new object[] { "message", new List<int>() { 1, 2, 3, 4, 5 } });
var executeScriptMessage = new ExecuteScriptMessage() { CustomEntryPoint = customEntryPoint, ScriptName = SCRIPT_NAME };
Remarks
This type is used in the ExecuteScriptMessage to specify a custom entry point. For more information on how to define a custom entry point method, see AutomationEntryPointAttribute class.
Constructors
- AutomationEntryPoint()
Initializes a new class of the AutomationEntryPoint class.
Properties
- EntryPointType
Gets or sets the entry point type.
- Parameters
Gets or sets the parameters for the custom entry point method.