Opc.Ua.ProgramStateMachineState.IsSuspendExecutable C# (CSharp) 메소드

IsSuspendExecutable() 보호된 메소드

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