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

IsResetUserExecutable() protected method

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