Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public Graph(
SessionBase session,
bool vertexIdSetPerVertexType = true
)
Public Sub New (
session As SessionBase,
Optional vertexIdSetPerVertexType As Boolean = true
)
public:
Graph(
SessionBase^ session,
bool vertexIdSetPerVertexType = true
)
new :
session : SessionBase *
?vertexIdSetPerVertexType : bool
(* Defaults:
let _vertexIdSetPerVertexType = defaultArg vertexIdSetPerVertexType true
*)
-> Graph
Parameters
- session
- Type: VelocityDb.SessionSessionBase
The active session - vertexIdSetPerVertexType (Optional)
- Type: SystemBoolean
Set to if you want graph wide unique Vertex ids, by default each VertexType maintains its own set of Vertex ids
See Also