Click or drag to resize

SparqlRemoteEndpointAsyncQueryWithResultSet Delegate

Makes a Query where the expected Result is a SparqlResultSet ie. SELECT and ASK Queries.

Namespace:  VDS.RDF.Query
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public delegate SparqlResultSet AsyncQueryWithResultSet(
	string sparqlQuery
)

Parameters

sparqlQuery
Type: SystemString
SPARQL Query String.

Return Value

Type: SparqlResultSet
A Sparql Result Set.
Remarks

Allows for implementation of asynchronous querying. Note that the overloads of QueryWithResultSet() and QueryWithResultGraph() that take callbacks are already implemented asynchronously so you may wish to use those instead if you don't need to explicitly invoke and wait on an async operation.

See Also