Delegate SparqlRemoteEndpoint.AsyncQueryWithResultSet
Makes a Query where the expected Result is a SparqlResultSet ie. SELECT and ASK Queries.
Namespace: VDS.RDF.Query
Assembly: dotNetRDF.dll
Syntax
public delegate SparqlResultSet AsyncQueryWithResultSet(string sparqlQuery);
Parameters
Type | Name | Description |
---|---|---|
System.String | sparqlQuery | SPARQL Query String. |
Returns
Type | Description |
---|---|
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.