SparqlQueryEvaluate Method (IRdfHandler, ISparqlResultsHandler, IInMemoryQueryableStore) |
Note: This API is now obsolete.
Evaluates the SPARQL Query against the given Triple Store processing the results with the appropriate handler from those provided.
Namespace:
VDS.RDF.Query
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax [ObsoleteAttribute("This method is considered obsolete, you should create an ISparqlQueryProcessor instance and invoke the ProcessQuery() method instead",
true)]
public void Evaluate(
IRdfHandler rdfHandler,
ISparqlResultsHandler resultsHandler,
IInMemoryQueryableStore data
)
<ObsoleteAttribute("This method is considered obsolete, you should create an ISparqlQueryProcessor instance and invoke the ProcessQuery() method instead",
true)>
Public Sub Evaluate (
rdfHandler As IRdfHandler,
resultsHandler As ISparqlResultsHandler,
data As IInMemoryQueryableStore
)
Parameters
- rdfHandler
- Type: VDS.RDFIRdfHandler
RDF Handler. - resultsHandler
- Type: VDS.RDFISparqlResultsHandler
Results Handler. - data
- Type: VDS.RDFIInMemoryQueryableStore
Triple Store.
See Also