SparqlResultsHandlerCallback Delegate |
Callbacks for methods that process the results with an SPARQL Results Handler asynchronously.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public delegate void SparqlResultsHandlerCallback(
ISparqlResultsHandler handler,
Object state
)
Public Delegate Sub SparqlResultsHandlerCallback (
handler As ISparqlResultsHandler,
state As Object
)
Parameters
- handler
- Type: VDS.RDFISparqlResultsHandler
SPARQL Results Handler. - 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