Interface IRdfReader
Interface to be implemented by RDF Readers which parse Concrete RDF Syntax.
Namespace: VDS.RDF
Assembly: dotNetRdf.dll
Syntax
public interface IRdfReader
  Methods
| Edit this page View SourceLoad(IGraph, StreamReader)
Method for Loading a Graph from some Concrete RDF Syntax via some arbitrary Stream.
Declaration
void Load(IGraph g, StreamReader input)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IGraph | g | Graph to load RDF into.  | 
      
| StreamReader | input | The reader to read input from.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| RdfException | Thrown if the Parser tries to output something that is invalid RDF.  | 
      
| RdfParseException | Thrown if the Parser cannot Parse the Input.  | 
      
| IOException | Thrown if the Parser encounters an IO Error while trying to access/parse the Stream.  | 
      
Load(IGraph, TextReader)
Method for Loading a Graph from some Concrete RDF Syntax via some arbitrary Input.
Declaration
void Load(IGraph g, TextReader input)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IGraph | g | Graph to load RDF into.  | 
      
| TextReader | input | The reader to read input from.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| RdfException | Thrown if the Parser tries to output something that is invalid RDF.  | 
      
| RdfParseException | Thrown if the Parser cannot Parse the Input.  | 
      
| IOException | Thrown if the Parser encounters an IO Error while trying to access/parse the Stream.  | 
      
Load(IGraph, string)
Method for Loading a Graph from some Concrete RDF Syntax from a given File.
Declaration
void Load(IGraph g, string filename)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IGraph | g | Graph to load RDF into.  | 
      
| string | filename | The Filename of the File to read from.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| RdfException | Thrown if the Parser tries to output something that is invalid RDF.  | 
      
| RdfParseException | Thrown if the Parser cannot Parse the Input.  | 
      
| IOException | Thrown if the Parser encounters an IO Error while trying to access/parse the File.  | 
      
Load(IRdfHandler, StreamReader)
Method for Loading RDF using a RDF Handler from some Concrete RDF Syntax via some arbitrary Stream.
Declaration
void Load(IRdfHandler handler, StreamReader input)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IRdfHandler | handler | RDF Handler to use.  | 
      
| StreamReader | input | The reader to read input from.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| RdfException | Thrown if the Parser tries to output something that is invalid RDF.  | 
      
| RdfParseException | Thrown if the Parser cannot Parse the Input.  | 
      
| IOException | Thrown if the Parser encounters an IO Error while trying to access/parse the Stream.  | 
      
Load(IRdfHandler, StreamReader, IUriFactory)
Method for Loading RDF using a RDF Handler from some Concrete RDF Syntax via some arbitrary Stream.
Declaration
void Load(IRdfHandler handler, StreamReader input, IUriFactory uriFactory)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IRdfHandler | handler | RDF Handler to use.  | 
      
| StreamReader | input | The reader to read input from.  | 
      
| IUriFactory | uriFactory | URI factory to use.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| RdfException | Thrown if the Parser tries to output something that is invalid RDF.  | 
      
| RdfParseException | Thrown if the Parser cannot Parse the Input.  | 
      
| IOException | Thrown if the Parser encounters an IO Error while trying to access/parse the Stream.  | 
      
Load(IRdfHandler, TextReader)
Method for Loading RDF using a RDF Handler from some Concrete RDF Syntax via some arbitrary Stream.
Declaration
void Load(IRdfHandler handler, TextReader input)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IRdfHandler | handler | RDF Handler to use.  | 
      
| TextReader | input | The reader to read input from.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| RdfException | Thrown if the Parser tries to output something that is invalid RDF.  | 
      
| RdfParseException | Thrown if the Parser cannot Parse the Input.  | 
      
| IOException | Thrown if the Parser encounters an IO Error while trying to access/parse the Stream.  | 
      
Load(IRdfHandler, TextReader, IUriFactory)
Method for Loading RDF using a RDF Handler from some Concrete RDF Syntax via some arbitrary Stream.
Declaration
void Load(IRdfHandler handler, TextReader input, IUriFactory uriFactory)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IRdfHandler | handler | RDF Handler to use.  | 
      
| TextReader | input | The reader to read input from.  | 
      
| IUriFactory | uriFactory | URI factory to use.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| RdfException | Thrown if the Parser tries to output something that is invalid RDF.  | 
      
| RdfParseException | Thrown if the Parser cannot Parse the Input.  | 
      
| IOException | Thrown if the Parser encounters an IO Error while trying to access/parse the Stream.  | 
      
Load(IRdfHandler, string)
Method for Loading RDF using a RDF Handler from some Concrete RDF Syntax from a given File.
Declaration
void Load(IRdfHandler handler, string filename)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IRdfHandler | handler | RDF Handler to use.  | 
      
| string | filename | The Filename of the File to read from.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| RdfException | Thrown if the Parser tries to output something that is invalid RDF.  | 
      
| RdfParseException | Thrown if the Parser cannot Parse the Input.  | 
      
| IOException | Thrown if the Parser encounters an IO Error while trying to access/parse the Stream.  | 
      
Load(IRdfHandler, string, IUriFactory)
Method for Loading RDF using a RDF Handler from some Concrete RDF Syntax from a given File.
Declaration
void Load(IRdfHandler handler, string filename, IUriFactory uriFactory)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IRdfHandler | handler | RDF Handler to use.  | 
      
| string | filename | The Filename of the File to read from.  | 
      
| IUriFactory | uriFactory | URI factory to use.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| RdfException | Thrown if the Parser tries to output something that is invalid RDF.  | 
      
| RdfParseException | Thrown if the Parser cannot Parse the Input.  | 
      
| IOException | Thrown if the Parser encounters an IO Error while trying to access/parse the Stream.  | 
      
Events
| Edit this page View SourceWarning
Event which Readers can raise when they notice syntax that is ambigious/deprecated etc which can still be parsed
Declaration
event RdfReaderWarning Warning
  Event Type
| Type | Description | 
|---|---|
| RdfReaderWarning |