IGraphMerge 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
)
Sub Merge (
g As IGraph,
keepOriginalGraphUri As Boolean
)
Parameters
- g
- Type: VDS.RDFIGraph
Graph to merge. - keepOriginalGraphUri
- Type: SystemBoolean
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