Callback for methods that return a
IGraph asynchronously.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public delegate void GraphCallback(
IGraph g,
Object state
)
Public Delegate Sub GraphCallback (
g As IGraph,
state As Object
)
Parameters
- g
- Type: VDS.RDFIGraph
Graph. - 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