VertexGetEdges Method (Direction, String) |
Return the edges incident to the vertex according to the provided direction and edge labels.
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 8.2.1.0 (8.2.1)
Syntaxpublic IEnumerable<IEdge> GetEdges(
Direction direction,
params string[] labels
)
Public Function GetEdges (
direction As Direction,
ParamArray labels As String()
) As IEnumerable(Of IEdge)
public:
virtual IEnumerable<IEdge^>^ GetEdges(
Direction direction,
... array<String^>^ labels
) sealed
abstract GetEdges :
direction : Direction *
labels : string[] -> IEnumerable<IEdge>
override GetEdges :
direction : Direction *
labels : string[] -> IEnumerable<IEdge>
Parameters
- direction
- Type: Direction
the direction of the edges to retrieve - labels
- Type: SystemString
the labels of the edges to retrieve
Return Value
Type:
IEnumerableIEdgean IEnumerable of incident edges
Implements
IVertex.GetEdges(Direction, String)
See Also