Interface ISparqlResultsHandler
Interface for Handlers which handle the SPARQL Results produced by parsers.
Inherited Members
Namespace: VDS.RDF
Assembly: dotNetRdf.dll
Syntax
public interface ISparqlResultsHandler : INodeFactory
Methods
| Edit this page View SourceEndResults(bool)
Ends the Handling of Results.
Declaration
void EndResults(bool ok)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | ok | Indicates whether parsing completed without error. |
HandleBooleanResult(bool)
Handles a Boolean Result.
Declaration
void HandleBooleanResult(bool result)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | result | Result. |
HandleResult(ISparqlResult)
Handles a SPARQL Result.
Declaration
bool HandleResult(ISparqlResult result)
Parameters
| Type | Name | Description |
|---|---|---|
| ISparqlResult | result | Result. |
Returns
| Type | Description |
|---|---|
| bool |
HandleVariable(string)
Handles a Variable Declaration.
Declaration
bool HandleVariable(string var)
Parameters
| Type | Name | Description |
|---|---|---|
| string | var | Variable Name. |
Returns
| Type | Description |
|---|---|
| bool |
StartResults()
Starts the Handling of Results.
Declaration
void StartResults()