Interface IStoreReader
Interface to be implemented by Triple Store Readers.
Namespace: VDS.RDF
Assembly: dotNetRDF.dll
Syntax
public interface IStoreReader
Methods
| Improve this Doc View SourceLoad(IRdfHandler, TextReader)
Loads a RDF dataset using a RDF Handler.
Declaration
void Load(IRdfHandler handler, TextReader input)
Parameters
Type | Name | Description |
---|---|---|
IRdfHandler | handler | RDF Handler to use. |
System.IO.TextReader | input | Input to load from. |
Load(IRdfHandler, String)
Loads a RDF dataset using a RDF Handler.
Declaration
void Load(IRdfHandler handler, string filename)
Parameters
Type | Name | Description |
---|---|---|
IRdfHandler | handler | RDF Handler to use. |
System.String | filename | File to load from. |
Load(ITripleStore, TextReader)
Loads a RDF dataset into a Triple Store.
Declaration
void Load(ITripleStore store, TextReader input)
Parameters
Type | Name | Description |
---|---|---|
ITripleStore | store | Triple Store. |
System.IO.TextReader | input | Input to load from. |
Load(ITripleStore, String)
Loads a RDF dataset into a Triple Store.
Declaration
void Load(ITripleStore store, string filename)
Parameters
Type | Name | Description |
---|---|---|
ITripleStore | store | Triple Store. |
System.String | filename | File to load from. |
Events
| Improve this Doc View SourceWarning
Event which Readers can raise when they notice syntax that is ambigious/deprecated etc which can still be parsed
Declaration
event StoreReaderWarning Warning
Event Type
Type | Description |
---|---|
StoreReaderWarning |