Show / Hide Table of Contents

Interface ISparqlResultsHandler

Interface for Handlers which handle the SPARQL Results produced by parsers.
Inherited Members
INodeFactory.CreateBlankNode()
INodeFactory.CreateBlankNode(String)
INodeFactory.CreateGraphLiteralNode()
INodeFactory.CreateGraphLiteralNode(IGraph)
INodeFactory.CreateLiteralNode(String, Uri)
INodeFactory.CreateLiteralNode(String)
INodeFactory.CreateLiteralNode(String, String)
INodeFactory.CreateUriNode(Uri)
INodeFactory.CreateVariableNode(String)
INodeFactory.GetNextBlankNodeID()
Namespace: VDS.RDF
Assembly: dotNetRDF.dll
Syntax
public interface ISparqlResultsHandler : INodeFactory

Methods

| Improve this Doc View Source

EndResults(Boolean)

Ends the Handling of Results.
Declaration
void EndResults(bool ok)
Parameters
Type Name Description
System.Boolean ok Indicates whether parsing completed without error.
| Improve this Doc View Source

HandleBooleanResult(Boolean)

Handles a Boolean Result.
Declaration
void HandleBooleanResult(bool result)
Parameters
Type Name Description
System.Boolean result Result.
| Improve this Doc View Source

HandleResult(SparqlResult)

Handles a SPARQL Result.
Declaration
bool HandleResult(SparqlResult result)
Parameters
Type Name Description
SparqlResult result Result.
Returns
Type Description
System.Boolean
| Improve this Doc View Source

HandleVariable(String)

Handles a Variable Declaration.
Declaration
bool HandleVariable(string var)
Parameters
Type Name Description
System.String var Variable Name.
Returns
Type Description
System.Boolean
| Improve this Doc View Source

StartResults()

Starts the Handling of Results.
Declaration
void StartResults()

Extension Methods

Extensions.AsEnumerable<T>(T)
HandlerExtensions.Apply(ISparqlResultsHandler, SparqlResultSet)
  • Improve this Doc
  • View Source
In This Article
  • Methods
    • EndResults(Boolean)
    • HandleBooleanResult(Boolean)
    • HandleResult(SparqlResult)
    • HandleVariable(String)
    • StartResults()
  • Extension Methods
Back to top Generated by DocFX