Opc.Ua.AlarmConditionState.IsTimedShelveExecutable C# (CSharp) Method

IsTimedShelveExecutable() protected method

Checks whether the TimedShelve method is executable.
protected IsTimedShelveExecutable ( ISystemContext context, NodeState node, bool &value ) : ServiceResult
context ISystemContext
node NodeState
value bool
return ServiceResult
        protected ServiceResult IsTimedShelveExecutable(
            ISystemContext context,
            NodeState node,
            ref bool value)
        {
            value = this.ShelvingState.IsCausePermitted(context, Methods.ShelvedStateMachineType_TimedShelve, false);
            return ServiceResult.Good;
        }