Click or drag to resize

TripleStoreExtensionsLoadFromUri Method (ITripleStore, Uri, IStoreReader)

Loads an RDF dataset from a URI into a Triple Store.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public static void LoadFromUri(
	this ITripleStore store,
	Uri u,
	IStoreReader parser
)

Parameters

store
Type: VDS.RDFITripleStore
Triple Store to load into.
u
Type: SystemUri
URI to load from.
parser
Type: VDS.RDFIStoreReader
Parser to use.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ITripleStore. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks
This is just a shortcut to using the static Load() methods from the UriLoader class located in the Parsing namespace.
See Also