SparqlResultsCallback Delegate |
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public delegate void SparqlResultsCallback(
SparqlResultSet results,
Object state
)
Public Delegate Sub SparqlResultsCallback (
results As SparqlResultSet,
state As Object
)
Parameters
- results
- Type: VDS.RDF.QuerySparqlResultSet
SPARQL Results. - state
- Type: SystemObject
State.
Remarks
In the event of an error you will be passed an instance of
AsyncError which will contain the error and the original state information you passed into the method that took this callback.
See Also