IGraphGetEdges Method (String, Object) |
Return an iterable to all the edges in the graph that have a particular key/value property.
If this is not possible for the implementation, then an NotSupportedException can be thrown.
The graph implementation should use indexing structures to make this efficient else a full edge-filter scan is required.
Namespace:
VelocityGraph.Frontenac.Blueprints
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax IEnumerable<IEdge> GetEdges(
string key,
Object value
)
Function GetEdges (
key As String,
value As Object
) As IEnumerable(Of IEdge)
IEnumerable<IEdge^>^ GetEdges(
String^ key,
Object^ value
)
abstract GetEdges :
key : string *
value : Object -> IEnumerable<IEdge>
Parameters
- key
- Type: SystemString
the key of the edge - value
- Type: SystemObject
the value of the edge
Return Value
Type:
IEnumerableIEdgean iterable of edges with provided key and value
See Also