Tools.CopyNode Method (INode, IGraph) |
Copies a Node so it can be used in another Graph since by default Triples cannot contain Nodes from more than one Graph.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntaxpublic static INode CopyNode(
INode original,
IGraph target
)
Public Shared Function CopyNode (
original As INode,
target As IGraph
) As INode
Parameters
- original
- Type: VDS.RDF.INode
Node to Copy. - target
- Type: VDS.RDF.IGraph
Graph to Copy into.
Return Value
Type:
INode[Missing <returns> documentation for "M:VDS.RDF.Tools.CopyNode(VDS.RDF.INode,VDS.RDF.IGraph)"]
RemarksWarning: Copying Blank Nodes may lead to unforseen circumstances since no remapping of IDs between Graphs is done.
See Also