Opc.Ua.Server.CustomNodeManager2.IsNodeInView C# (CSharp) Method

IsNodeInView() public method

Returns true if a node is in a view.
public IsNodeInView ( OperationContext context, Opc.Ua.NodeId viewId, object nodeHandle ) : bool
context OperationContext
viewId Opc.Ua.NodeId
nodeHandle object
return bool
        public virtual bool IsNodeInView(OperationContext context, NodeId viewId, object nodeHandle)
        {
            NodeHandle handle = nodeHandle as NodeHandle;

            if (handle == null)
            {
                return false;
            }

            if (handle.Node != null)
            {
                return IsNodeInView(context, viewId, handle.Node);
            }

            return false;
        }
        #endregion

Same methods

CustomNodeManager2::IsNodeInView ( ServerSystemContext context, ContinuationPoint continuationPoint, NodeState node ) : bool
CustomNodeManager2::IsNodeInView ( ServerSystemContext context, Opc.Ua.NodeId viewId, NodeState node ) : bool
CustomNodeManager2