AsyncStorageOperation Enumeration |
Possible Async Storage API Actions.
Namespace:
VDS.RDF.Storage
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public enum AsyncStorageOperation
Public Enumeration AsyncStorageOperation
Members
| Member name | Value | Description |
---|
| LoadGraph | 0 |
Loaded a Graph
|
| LoadWithHandler | 1 |
Loaded data with a RDF Handler
|
| SaveGraph | 2 |
Saved a Graph
|
| UpdateGraph | 3 |
Updates a Graph
|
| DeleteGraph | 4 |
Deleted a Graph
|
| ListGraphs | 5 |
Listed Graphs
|
| SparqlQuery | 6 |
Made a SPARQL Query
|
| SparqlQueryWithHandler | 7 |
Made a SPARQL Query with a handler
|
| SparqlUpdate | 8 |
Made a SPARQL Update
|
| TransactionBegin | 9 |
Began a Transaction
|
| TransactionCommit | 10 |
Committed a Transaction
|
| TransactionRollback | 11 |
Rolled back a Transaction
|
| NewTemplate | 12 |
Gettting a new store template
|
| AvailableTemplates | 13 |
Getting all available templates
|
| CreateStore | 14 |
Created a Store
|
| DeleteStore | 15 |
Deleted a Store
|
| GetStore | 16 |
Retrieved a reference to a Store
|
| ListStores | 17 |
Got the list of Stores
|
| Unknown | 18 |
Unknown Action
|
See Also