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

IsResumeUserExecutable() protected method

Checks whether the resume method is executable by the current user.
protected IsResumeUserExecutable ( ISystemContext context, NodeState node, bool &value ) : ServiceResult
context ISystemContext
node NodeState
value bool
return ServiceResult
        protected ServiceResult IsResumeUserExecutable(
            ISystemContext context,
            NodeState node,
            ref bool value)
        {
            value = IsCausePermitted(context, Methods.ProgramStateMachineType_Resume, true);       
            return ServiceResult.Good;
        }