ISparqlQueryProcessor.ProcessQuery Method (SparqlQuery, GraphCallback, SparqlResultsCallback, Object) |
Processes a SPARQL Query asynchronously invoking the relevant callback when the query completes.
Namespace:
VDS.RDF.Query
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntaxvoid ProcessQuery(
SparqlQuery query,
GraphCallback rdfCallback,
SparqlResultsCallback resultsCallback,
Object state
)
Sub ProcessQuery (
query As SparqlQuery,
rdfCallback As GraphCallback,
resultsCallback As SparqlResultsCallback,
state As Object
)
Parameters
- query
- Type: VDS.RDF.Query.SparqlQuery
SPARQL QUery. - rdfCallback
- Type: VDS.RDF.GraphCallback
Callback for queries that return a Graph. - resultsCallback
- Type: VDS.RDF.SparqlResultsCallback
Callback for queries that return a Result Set. - state
- Type: System.Object
State to pass to the callback.
See Also