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

| Edit this page 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.

TextReader input

Input to load from.

| Edit this page View Source

Load(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.

TextReader input

File to load from.

IUriFactory uriFactory

URI factory to use.

| Edit this page 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.

string filename

File to load from.

| Edit this page View Source

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.

| Edit this page 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.

TextReader input

Input to load from.

| Edit this page 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.

string filename

File to load from.

Events

| Edit this page 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.ToSafeString(object)
Extensions.AsEnumerable<T>(T)
  • Edit this page
  • View Source
In this article
  • Methods
    • Load(IRdfHandler, TextReader)
    • Load(IRdfHandler, TextReader, IUriFactory)
    • Load(IRdfHandler, string)
    • Load(IRdfHandler, string, IUriFactory)
    • Load(ITripleStore, TextReader)
    • Load(ITripleStore, string)
  • Events
    • Warning
  • Extension Methods
Back to top Generated by DocFX