GraphSonWriterOutputGraph Method (IGraph, Stream) |
Write the data in a Graph to a JSON OutputStream. All keys are written to JSON. Utilizing
GraphSONMode.NORMAL.
Namespace:
VelocityGraph.Frontenac.Blueprints.Util.IO.GraphSON
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public static void OutputGraph(
IGraph graph,
Stream jsonOutputStream
)
Public Shared Sub OutputGraph (
graph As IGraph,
jsonOutputStream As Stream
)
public:
static void OutputGraph(
IGraph^ graph,
Stream^ jsonOutputStream
)
static member OutputGraph :
graph : IGraph *
jsonOutputStream : Stream -> unit
Parameters
- graph
- Type: VelocityGraph.Frontenac.BlueprintsIGraph
the graph to serialize to JSON - jsonOutputStream
- Type: System.IOStream
the JSON OutputStream to write the Graph data to
See Also