IdGraph Constructor (IKeyIndexableGraph, Boolean, Boolean) |
Adds custom ID functionality to the given graph,
supporting either custom vertex IDs, custom edge IDs, or both.
Namespace:
VelocityGraph.Frontenac.Blueprints.Util.Wrappers.Id
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public IdGraph(
IKeyIndexableGraph baseGraph,
bool supportVertexIds,
bool supportEdgeIds
)
Public Sub New (
baseGraph As IKeyIndexableGraph,
supportVertexIds As Boolean,
supportEdgeIds As Boolean
)
public:
IdGraph(
IKeyIndexableGraph^ baseGraph,
bool supportVertexIds,
bool supportEdgeIds
)
new :
baseGraph : IKeyIndexableGraph *
supportVertexIds : bool *
supportEdgeIds : bool -> IdGraph
Parameters
- baseGraph
- Type: VelocityGraph.Frontenac.BlueprintsIKeyIndexableGraph
the base graph which does not necessarily support custom IDs - supportVertexIds
- Type: SystemBoolean
whether to support custom vertex IDs - supportEdgeIds
- Type: SystemBoolean
whether to support custom edge IDs
See Also