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, IUriFactory)
Loads an RDF dataset using and RDF handler.
Declaration
void Load(IRdfHandler handler, TextReader input, IUriFactory uriFactory)
Parameters
Type | Name | Description |
---|---|---|
IRdfHandler | handler | RDF handler to use. |
System.IO.TextReader | input | File to load from. |
IUriFactory | uriFactory | URI factory to use. |
Load(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, IUriFactory)
Loads an RDF dataset using an RDF handler.
Declaration
void Load(IRdfHandler handler, string filename, IUriFactory uriFactory)
Parameters
Type | Name | Description |
---|---|---|
IRdfHandler | handler | RDF handler to use. |
string | filename | File to load from. |
IUriFactory | uriFactory | URI factory to use. |
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. |
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. |
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 |