Click or drag to resize

ConfigurationLoaderLoadObject Method (IGraph, INode)

Loads the Object identified by the given Node based on information from the Configuration Graph.

Namespace:  VDS.RDF.Configuration
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public static Object LoadObject(
	IGraph g,
	INode objNode
)

Parameters

g
Type: VDS.RDFIGraph
Configuration Graph.
objNode
Type: VDS.RDFINode
Object Node.

Return Value

Type: Object

[Missing <returns> documentation for "M:VDS.RDF.Configuration.ConfigurationLoader.LoadObject(VDS.RDF.IGraph,VDS.RDF.INode)"]

Remarks

Use this overload when you have a Node which identifies an Object and you don't know what the type of that Object is. This function looks up the dnr:type property for the given Object and then calls the other version of this function providing it with the relevant type information.

See Also