Click or drag to resize

FileLoaderLoad Method (IRdfHandler, String, IRdfReader)

Loads the contents of the given File using a RDF Handler using the given RDF Parser.

Namespace:  VDS.RDF.Parsing
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public static void Load(
	IRdfHandler handler,
	string filename,
	IRdfReader parser
)

Parameters

handler
Type: VDS.RDFIRdfHandler
RDF Handler to use.
filename
Type: SystemString
File to load from.
parser
Type: VDS.RDFIRdfReader
Parser to use.
Remarks

Note: FileLoader will assign the Graph a file URI as it's Base URI unless the Graph already has a Base URI or is non-empty prior to attempting parsing. Note that any Base URI specified in the RDF contained in the file will override this initial Base URI. In some cases this may lead to invalid RDF being accepted and generating strange relative URIs, if you encounter this either set a Base URI prior to calling this method or create an instance of the relevant parser and invoke it directly.

If a File URI is assigned it will always be an absolute URI for the file.

See Also