Click or drag to resize

ExtensionsCopyTriple Method (Triple, IGraph)

Copies a Triple to the target Graph.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public static Triple CopyTriple(
	this Triple t,
	IGraph target
)

Parameters

t
Type: VDS.RDFTriple
Triple to copy.
target
Type: VDS.RDFIGraph
Target Graph.

Return Value

Type: Triple

[Missing <returns> documentation for "M:VDS.RDF.Extensions.CopyTriple(VDS.RDF.Triple,VDS.RDF.IGraph)"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Triple. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks
Shorthand for the Tools.CopyTriple() method.
See Also