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

IsStartUserExecutable() protected method

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