Opc.Ua.Node.ReferenceExists C# (CSharp) Method

ReferenceExists() public method

Returns true if the reference exist.
public ReferenceExists ( Opc.Ua.NodeId referenceTypeId, bool isInverse, Opc.Ua.ExpandedNodeId targetId ) : bool
referenceTypeId Opc.Ua.NodeId The reference type id.
isInverse bool if set to true [is inverse].
targetId Opc.Ua.ExpandedNodeId The target id.
return bool
        public bool ReferenceExists(
            NodeId         referenceTypeId, 
            bool           isInverse, 
            ExpandedNodeId targetId)
        {
            return ReferenceTable.Exists(referenceTypeId, isInverse, targetId, false, null);
        }