AsyncStorageCallbackArgs Class |
Represents arguments passed to callbacks on success/failure of a async storage API call.
Inheritance Hierarchy
Namespace:
VDS.RDF.Storage
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntaxpublic sealed class AsyncStorageCallbackArgs
Public NotInheritable Class AsyncStorageCallbackArgs
The AsyncStorageCallbackArgs type exposes the following members.
Constructors
| Name | Description |
---|
 | AsyncStorageCallbackArgs(AsyncStorageOperation) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, IEnumerable<String>) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, IEnumerable<Uri>) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, Exception) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, String) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, Uri) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, IGraph) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, IRdfHandler) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, IEnumerable<String>, Exception) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, String, IEnumerable<IStoreTemplate>) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, String, Exception) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, String, Object) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, String, IStoreTemplate) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, Uri, Exception) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, IGraph, Exception) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, IRdfHandler, Exception) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, String, Object, Exception) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, String, IRdfHandler, ISparqlResultsHandler) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, String, IAsyncStorageProvider, Exception) |
Creates new callback arguments.
|
 | AsyncStorageCallbackArgs(AsyncStorageOperation, String, IRdfHandler, ISparqlResultsHandler, Exception) |
Creates new callback arguments.
|
Top
Properties
| Name | Description |
---|
 | AvailableTemplates |
Gets the templates that were created (if any).
|
 | Error |
Gets the error that occurred (for failed operations).
|
 | Graph |
Gets the Graph that was saved/loaded (if applicable).
|
 | GraphUri |
Gets the URI of the Graph affected by the operation.
|
 | GraphUris |
Gets the list of Graph URIs (if applicable).
|
 | Operation |
Gets the operation that was performed.
|
 | Query |
Gets the SPARQL Query (if applicable).
|
 | QueryResults |
Gets the Query Results (if applicable).
|
 | RdfHandler |
Gets the RDF Handler used (if applicable).
|
 | ResultsHandler |
Gets the Results Handler used (if applicable).
|
 | StorageProvider |
Gets the Storage Provider (if applicable).
|
 | StoreID |
Gets the Store ID (if applicable).
|
 | StoreIDs |
Gets the list of Store IDs (if applicable).
|
 | Template |
Gets the template that was created (if any).
|
 | Updates |
Gets the SPARQL Update (if applicable).
|
 | WasSuccessful |
Gets whether the async operation succeeded (no error occurred).
|
Top
Methods
| Name | Description |
---|
 | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
 | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
 | GetType | Gets the Type of the current instance. (Inherited from Object.) |
 | ToString | 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