DataUriLoaderLoad 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.RDFIGraph
Graph to load into. - u
 - Type: SystemUri
URI to load from. 
Exceptions| Exception | 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