Click or drag to resize

Triple Constructor (INode, INode, INode)

Constructs a Triple from Nodes that belong to the same Graph/Node Factory.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public Triple(
	INode subj,
	INode pred,
	INode obj
)

Parameters

subj
Type: VDS.RDF.INode
Subject of the Triple.
pred
Type: VDS.RDF.INode
Predicate of the Triple.
obj
Type: VDS.RDF.INode
Object of the Triple.
Exceptions
ExceptionCondition
RdfExceptionThrown if the Nodes aren't all from the same Graph/Node Factory.
Remarks
Will throw an RdfException if the Nodes don't belong to the same Graph/Node Factory.
See Also