GraphGetVertices Method (String, Object) |
Return an iterable to all the vertices in the graph that have a particular key/value property.
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public IEnumerable<IVertex> GetVertices(
string key,
Object value
)
Public Function GetVertices (
key As String,
value As Object
) As IEnumerable(Of IVertex)
public:
virtual IEnumerable<IVertex^>^ GetVertices(
String^ key,
Object^ value
) sealed
abstract GetVertices :
key : string *
value : Object -> IEnumerable<IVertex>
override GetVertices :
key : string *
value : Object -> IEnumerable<IVertex>
Parameters
- key
- Type: SystemString
the key of vertex - value
- Type: SystemObject
the value of the vertex
Return Value
Type:
IEnumerableIVertexan iterable of vertices with provided key and value
Implements
IGraphGetVertices(String, Object)See Also