Click or drag to resize

UriLoaderLoadDataset Method (IRdfHandler, Uri, RdfHandlerCallback, Object)

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

Namespace:  VDS.RDF.Parsing
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public static void LoadDataset(
	IRdfHandler handler,
	Uri u,
	RdfHandlerCallback callback,
	Object state
)

Parameters

handler
Type: VDS.RDFIRdfHandler
RDF Handler to use.
u
Type: SystemUri
URI to attempt to get a RDF dataset from.
callback
Type: VDS.RDFRdfHandlerCallback
Callback to invoke when the operation completes.
state
Type: SystemObject
State to pass to the callback.
Remarks

Attempts to select the relevant Store Parser based on the Content Type header returned in the HTTP Response.

If the loading completes normally the callback will be invoked normally, if an error occurs it will be invoked and passed an instance of AsyncError as the state which contains details of the error and the original state.

See Also