Click or drag to resize

AsyncStorageCallbackArgs Class

Represents arguments passed to callbacks on success/failure of a async storage API call.
Inheritance Hierarchy
SystemObject
  VDS.RDF.StorageAsyncStorageCallbackArgs

Namespace:  VDS.RDF.Storage
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public sealed class AsyncStorageCallbackArgs

The AsyncStorageCallbackArgs type exposes the following members.

Constructors
  NameDescription
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, IEnumerableString)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, IEnumerableUri)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, Exception)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, String)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, Uri)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, IGraph)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, IRdfHandler)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, IEnumerableString, Exception)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, String, IEnumerableIStoreTemplate)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, String, Exception)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, String, Object)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, String, IStoreTemplate)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, Uri, Exception)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, IGraph, Exception)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, IRdfHandler, Exception)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, String, Object, Exception)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, String, IRdfHandler, ISparqlResultsHandler)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, String, IAsyncStorageProvider, Exception)
Creates new callback arguments.
Public methodAsyncStorageCallbackArgs(AsyncStorageOperation, String, IRdfHandler, ISparqlResultsHandler, Exception)
Creates new callback arguments.
Top
Properties
  NameDescription
Public propertyAvailableTemplates
Gets the templates that were created (if any).
Public propertyError
Gets the error that occurred (for failed operations).
Public propertyGraph
Gets the Graph that was saved/loaded (if applicable).
Public propertyGraphUri
Gets the URI of the Graph affected by the operation.
Public propertyGraphUris
Gets the list of Graph URIs (if applicable).
Public propertyOperation
Gets the operation that was performed.
Public propertyQuery
Gets the SPARQL Query (if applicable).
Public propertyQueryResults
Gets the Query Results (if applicable).
Public propertyRdfHandler
Gets the RDF Handler used (if applicable).
Public propertyResultsHandler
Gets the Results Handler used (if applicable).
Public propertyStorageProvider
Gets the Storage Provider (if applicable).
Public propertyStoreID
Gets the Store ID (if applicable).
Public propertyStoreIDs
Gets the list of Store IDs (if applicable).
Public propertyTemplate
Gets the template that was created (if any).
Public propertyUpdates
Gets the SPARQL Update (if applicable).
Public propertyWasSuccessful
Gets whether the async operation succeeded (no error occurred).
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

Primarily used to provide simple method signatures on the async storage API callbacks.

See Also