Click or drag to resize

IGraph.Merge Method (IGraph, Boolean)

Merges the given Graph into this Graph.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
void Merge(
	IGraph g,
	bool keepOriginalGraphUri
)

Parameters

g
Type: VDS.RDF.IGraph
Graph to merge.
keepOriginalGraphUri
Type: System.Boolean
Indicates that the Merge should preserve the Graph URIs of Nodes.
Remarks

The Graph should raise the MergeRequested event at the start of the Merge operation and abort the operation if the operation is cancelled by an event handler. On completing the Merge the Merged event should be raised.

See Also