DepthFirstSearchCrawlerTVertex, TEdgeOnVisited Method  | 
 
            Called when the vertexVisited was visited over the edges specified. This method is called right after all vertices related to vertexVisited were visited.
            
 
    Namespace: 
   SD.Tools.Algorithmia.Graphs
    Assembly:
   SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.3.5.0 (1.3.18.1017)
Syntaxprotected virtual void OnVisited(
	TVertex vertexVisited,
	HashSet<TEdge> edges
)
Protected Overridable Sub OnVisited ( 
	vertexVisited As TVertex,
	edges As HashSet(Of TEdge)
)
Parameters
- vertexVisited
 - Type: TVertex
The vertex visited right before this method. - edges
 - Type: System.Collections.GenericHashSetTEdge
The edges usable to visit vertexVisited. Can be null, in which case the vertex was visited without using an edge (which would mean
            the vertex is a tree root, or the start vertex.) 
See Also