DataUriLoaderLoad Method (IRdfHandler, Uri) | 
 
            Loads RDF data using an RDF Handler from a data: URI.
            
 
    Namespace: 
   VDS.RDF.Parsing
    Assembly:
   dotNetRDF (in dotNetRDF.dll) Version: 
Syntaxpublic static void Load(
	IRdfHandler handler,
	Uri u
)
Public Shared Sub Load ( 
	handler As IRdfHandler,
	u As Uri
)
Parameters
- handler
 - Type: VDS.RDFIRdfHandler
RDF Handler. - 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