Show / Hide Table of Contents

Interface ISparqlResultsReader

Interface for Reader Classes which parser Sparql Result Set syntaxes into Result Set objects.
Namespace: VDS.RDF
Assembly: dotNetRDF.dll
Syntax
public interface ISparqlResultsReader

Methods

| Improve this Doc View Source

Load(ISparqlResultsHandler, StreamReader)

Loads a Result Set using a Results Handler from the given Stream.
Declaration
void Load(ISparqlResultsHandler handler, StreamReader input)
Parameters
Type Name Description
ISparqlResultsHandler handler Results Handler.
System.IO.StreamReader input Stream to read from.
| Improve this Doc View Source

Load(ISparqlResultsHandler, TextReader)

Loads a Result Set using a Results Handler from the given Input.
Declaration
void Load(ISparqlResultsHandler handler, TextReader input)
Parameters
Type Name Description
ISparqlResultsHandler handler Results Handler.
System.IO.TextReader input Input to read from.
| Improve this Doc View Source

Load(ISparqlResultsHandler, String)

Loads a Result Set using a Results Handler from the given file.
Declaration
void Load(ISparqlResultsHandler handler, string filename)
Parameters
Type Name Description
ISparqlResultsHandler handler Results Handler.
System.String filename File to read results from.
| Improve this Doc View Source

Load(SparqlResultSet, StreamReader)

Loads a Result Set from the given Stream.
Declaration
void Load(SparqlResultSet results, StreamReader input)
Parameters
Type Name Description
SparqlResultSet results Result Set to load into.
System.IO.StreamReader input Stream to read from.
Remarks
Should throw an error if the Result Set is not empty.
| Improve this Doc View Source

Load(SparqlResultSet, TextReader)

Loads a Result Set from the given Input.
Declaration
void Load(SparqlResultSet results, TextReader input)
Parameters
Type Name Description
SparqlResultSet results Result Set to load into.
System.IO.TextReader input Input to read from.
Remarks
Should throw an error if the Result Set is not empty.
| Improve this Doc View Source

Load(SparqlResultSet, String)

Loads a Result Set from the given File.
Declaration
void Load(SparqlResultSet results, string filename)
Parameters
Type Name Description
SparqlResultSet results Result Set to load into.
System.String filename File containing a Result Set.
Remarks
Should throw an error if the Result Set is not empty.

Events

| Improve this Doc View Source

Warning

Event raised when a non-fatal issue with the SPARQL Results being parsed is detected
Declaration
event SparqlWarning Warning
Event Type
Type Description
SparqlWarning

Extension Methods

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