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

IsUnshelveExecutable() protected method

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