GraphBaseTVertex, TEdgeGetEdges Method  | 
 
            Gets all the edges between startVertex and endVertex.
            
 
    Namespace: 
   SD.Tools.Algorithmia.Graphs
    Assembly:
   SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.4.0.0 (1.4.19.0711)
Syntaxpublic HashSet<TEdge> GetEdges(
	TVertex startVertex,
	TVertex endVertex
)
Public Function GetEdges ( 
	startVertex As TVertex,
	endVertex As TVertex
) As HashSet(Of TEdge)
Parameters
- startVertex
 - Type: TVertex
The start vertex. - endVertex
 - Type: TVertex
The end vertex. 
Return Value
Type: 
HashSetTEdgeSet of edges between startVertex and endVertex or an empty set if one or both vertices aren't part of this graph or there are no edges.
See Also