SparqlRemoteEndpointAsyncQueryWithResultGraph Delegate |
Delegate for making a Query where the expected Result is an RDF Graph ie. CONSTRUCT and DESCRIBE Queries.
Namespace:
VDS.RDF.Query
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public delegate IGraph AsyncQueryWithResultGraph(
string sparqlQuery
)
Public Delegate Function AsyncQueryWithResultGraph (
sparqlQuery As String
) As IGraph
Parameters
- sparqlQuery
- Type: SystemString
Sparql Query String.
Return Value
Type:
IGraphRDF Graph.
Remarks Allows for implementation of asynchronous querying.
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