Click or drag to resize

ConfigurationLoaderCreateConfigurationNode Method

Note: This API is now obsolete.

Creates a URI Node that refers to some Configuration property/type.

Namespace:  VDS.RDF.Configuration
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
[ObsoleteAttribute("This method is obsolete and should no longer be used, constants are now URIs so you should just create URI Nodes directly on your Configuration Graph", 
	false)]
public static INode CreateConfigurationNode(
	IGraph g,
	string qname
)

Parameters

g
Type: VDS.RDFIGraph
Configuration Graph.
qname
Type: SystemString
QName of the property/type.

Return Value

Type: INode

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

Remarks

The QName provides should be of the form dnr:qname - the dnr prefix will be automatically be considered to be to the Configuration Namespace which is defined by the ConfigurationNamespace constant.

This function uses caching to ensure that URI Nodes aren't needlessly recreated in order to save memory.

See Also