AddressMatch.AddrSet.RetrievalGraph C# (CSharp) Method

RetrievalGraph() public method

Retrieval the graph from root, Depth-First Traversal
public RetrievalGraph ( Predicate p ) : List
p Predicate find matched node in condition supported predicate delegate
return List
        public List<GraphNode> RetrievalGraph(Predicate<GraphNode> p)
        {
            List<GraphNode> result = new List<GraphNode>();

            MultiMatchInNext(p, AddrGraph.root, ref result);

            return result;
        }