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

IsSuspendExecutable() protected method

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