Opc.Ua.ProgramStateMachineState.IsStartExecutable C# (CSharp) Method

IsStartExecutable() protected method

Checks whether the start method is executable.
protected IsStartExecutable ( ISystemContext context, NodeState node, bool &value ) : ServiceResult
context ISystemContext
node NodeState
value bool
return ServiceResult
        protected ServiceResult IsStartExecutable(
            ISystemContext context,
            NodeState node,
            ref bool value)
        {
            value = IsCausePermitted(context, Methods.ProgramStateMachineType_Start, false);        
            return ServiceResult.Good;
        }