DataUriLoader.Load Method (IGraph, Uri) |
Loads RDF data into a Graph from a data: URI.
Namespace:
VDS.RDF.Parsing
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntaxpublic static void Load(
IGraph g,
Uri u
)
Public Shared Sub Load (
g As IGraph,
u As Uri
)
Parameters
- g
- Type: VDS.RDF.IGraph
Graph to load into. - u
- Type: System.Uri
URI to load from.
ExceptionsException | Condition |
---|
UriFormatException | Thrown if the metadata portion of the URI which indicates the MIME Type, Character Set and whether Base64 encoding is used is malformed. |
Remarks
Invokes the normal
UriLoader instead if a the URI provided is not a data: URI.
See Also