Show / Hide Table of Contents

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 Source

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.
| Improve this Doc View Source

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.
| Improve this Doc View Source

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.
| Improve this Doc View Source

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 Source

Warning

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

Extension Methods

Extensions.AsEnumerable<T>(T)
  • Improve this Doc
  • View Source
In This Article
  • Methods
    • Load(IRdfHandler, TextReader)
    • Load(IRdfHandler, String)
    • Load(ITripleStore, TextReader)
    • Load(ITripleStore, String)
  • Events
    • Warning
  • Extension Methods
Back to top Generated by DocFX