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

Find() public method

Returns all targets of the specified reference type.
public Find ( Opc.Ua.NodeId referenceTypeId, bool isInverse ) : IList
referenceTypeId Opc.Ua.NodeId The reference type id.
isInverse bool if set to true [is inverse].
return IList
        public IList<IReference> Find(
            NodeId referenceTypeId, 
            bool   isInverse)
        {
            return ReferenceTable.Find(referenceTypeId, isInverse, false, null);
        }