UriLoaderLoad Method (IRdfHandler, Uri, IRdfReader) | 
 
            Attempts to load a RDF Graph from the given URI using a RDF Handler.
            
 
    Namespace: 
   VDS.RDF.Parsing
    Assembly:
   dotNetRDF (in dotNetRDF.dll) Version: 
Syntaxpublic static void Load(
	IRdfHandler handler,
	Uri u,
	IRdfReader parser
)
Public Shared Sub Load ( 
	handler As IRdfHandler,
	u As Uri,
	parser As IRdfReader
)
Parameters
- handler
 - Type: VDS.RDFIRdfHandler
RDF Handler to use. - u
 - Type: SystemUri
URI to attempt to get RDF from. - parser
 - Type: VDS.RDFIRdfReader
Parser to use. 
Remarks
            Uses the supplied parser to attempt parsing regardless of the actual Content Type returned.
            
            In the event that the URI is a File URI the FileLoader will be used instead.
            
            If the URI is a Data URI then the DataUriLoader will be used instead.
            
See Also