GraphGetVertex Method (Object) |
Return the vertex referenced by the provided object identifier.
If no vertex is referenced by that identifier, then return null.
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 8.2.1.0 (8.2.1)
Syntaxpublic IVertex GetVertex(
Object id
)
Public Function GetVertex (
id As Object
) As IVertex
public:
virtual IVertex^ GetVertex(
Object^ id
) sealed
abstract GetVertex :
id : Object -> IVertex
override GetVertex :
id : Object -> IVertex
Parameters
- id
- Type: SystemObject
the identifier of the vertex to retrieved from the graph, must be a UInt64
Return Value
Type:
IVertexthe vertex referenced by the provided identifier or null when no such vertex exists
Implements
IGraph.GetVertex(Object)
See Also