Click or drag to resize

UriLoaderLoad Method (IRdfHandler, Uri, IStoreReader)

Attempts to load a RDF dataset from the given URI using a RDF Handler.

Namespace:  VDS.RDF.Parsing
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public static void Load(
	IRdfHandler handler,
	Uri u,
	IStoreReader parser
)

Parameters

handler
Type: VDS.RDFIRdfHandler
RDF Handler to use.
u
Type: SystemUri
URI to attempt to get a RDF dataset from.
parser
Type: VDS.RDFIStoreReader
Parser to use to parse the RDF dataset.
Remarks

If the parser parameter is set to null then this method attempts to select the relevant Store Parser based on the Content Type header returned in the HTTP Response.

If you know ahead of time the Content Type you can explicitly pass in the parser to use.

See Also