Class DataUriLoader
A Class for parsing RDF data from Data URIs.
Inheritance
System.Object
DataUriLoader
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: dotNetRDF.dll
Syntax
public static class DataUriLoader
Methods
|
Improve this Doc
View Source
Load(IGraph, Uri)
Loads RDF data into a Graph from a data: URI.
Declaration
public static void Load(IGraph g, Uri u)
Parameters
Type |
Name |
Description |
IGraph |
g |
Graph to load into. |
System.Uri |
u |
URI to load from. |
Exceptions
Type |
Condition |
System.UriFormatException |
Thrown if the metadata portion of the URI which indicates the MIME Type, Character Set and whether Base64 encoding is used is malformed. |
|
Improve this Doc
View Source
Load(IRdfHandler, Uri)
Loads RDF data using an RDF Handler from a data: URI.
Declaration
public static void Load(IRdfHandler handler, Uri u)
Parameters
Type |
Name |
Description |
IRdfHandler |
handler |
RDF Handler. |
System.Uri |
u |
URI to load from. |
Remarks
Exceptions
Type |
Condition |
System.UriFormatException |
Thrown if the metadata portion of the URI which indicates the MIME Type, Character Set and whether Base64 encoding is used is malformed. |