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

IsResetExecutable() protected method

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