IUpdateableTripleStore Interface |
Namespace: VDS.RDF
The IUpdateableTripleStore type exposes the following members.
Name | Description | |
---|---|---|
Graphs |
Gets the Graph Collection of Graphs in this Triple Store.
(Inherited from ITripleStore.) | |
IsEmpty |
Gets whether a TripleStore is Empty.
(Inherited from ITripleStore.) | |
Item |
Gets a Graph from the Triple Store;.
(Inherited from ITripleStore.) | |
Triples |
Gets all the Triples in the Triple Store which are currently loaded in memory (see remarks).
(Inherited from ITripleStore.) |
Name | Description | |
---|---|---|
Add(IGraph) |
Adds a Graph into the Triple Store.
(Inherited from ITripleStore.) | |
Add(IGraph, Boolean) |
Adds a Graph into the Triple Store.
(Inherited from ITripleStore.) | |
AddFromUri(Uri) |
Adds a Graph into the Triple Store by dereferencing the Graph Uri to get the RDF and then load the resulting Graph into the Triple Store.
(Inherited from ITripleStore.) | |
AddFromUri(Uri, Boolean) |
Adds a Graph into the Triple Store by dereferencing the Graph Uri to get the RDF and then load the resulting Graph into the Triple Store.
(Inherited from ITripleStore.) | |
Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from IDisposable.) | |
ExecuteUpdate(String) |
Executes an Update against the Triple Store.
| |
ExecuteUpdate(SparqlUpdateCommand) |
Executes a single Update Command against the Triple Store.
| |
ExecuteUpdate(SparqlUpdateCommandSet) |
Executes a set of Update Commands against the Triple Store.
| |
HasGraph |
Checks whether the Graph with the given Uri is in this Triple Store.
(Inherited from ITripleStore.) | |
Remove |
Removes a Graph from the Triple Store.
(Inherited from ITripleStore.) |
Name | Description | |
---|---|---|
GraphAdded |
Event which is raised when a Graph is added
(Inherited from ITripleStore.) | |
GraphChanged |
Event which is raised when a Graphs contents changes
(Inherited from ITripleStore.) | |
GraphCleared |
Event which is raised when a Graph is cleared
(Inherited from ITripleStore.) | |
GraphMerged |
Event which is raised when a Graph has a merge operation performed on it
(Inherited from ITripleStore.) | |
GraphRemoved |
Event which is raised when a Graph is removed
(Inherited from ITripleStore.) |
Name | Description | |
---|---|---|
LoadFromEmbeddedResource(String) | Overloaded.
Loads an RDF dataset from an Embedded Resource into a Triple Store.
(Defined by TripleStoreExtensions.) | |
LoadFromEmbeddedResource(String, IStoreReader) | Overloaded.
Loads an RDF dataset from an Embedded Resource into a Triple Store.
(Defined by TripleStoreExtensions.) | |
LoadFromFile(String) | Overloaded.
Loads an RDF dataset from a file into a Triple Store.
(Defined by TripleStoreExtensions.) | |
LoadFromFile(String, IStoreReader) | Overloaded.
Loads an RDF dataset from a file into a Triple Store.
(Defined by TripleStoreExtensions.) | |
LoadFromString(String) | Overloaded.
Loads an RDF dataset from a String into a Triple Store.
(Defined by TripleStoreExtensions.) | |
LoadFromString(String, IStoreReader) | Overloaded.
Loads an RDF dataset from a String into a Triple Store.
(Defined by TripleStoreExtensions.) | |
LoadFromUri(Uri) | Overloaded.
Loads an RDF dataset from a URI into a Triple Store.
(Defined by TripleStoreExtensions.) | |
LoadFromUri(Uri, IStoreReader) | Overloaded.
Loads an RDF dataset from a URI into a Triple Store.
(Defined by TripleStoreExtensions.) | |
SaveToFile(String) | Overloaded.
Saves a Triple Store to a file.
(Defined by TripleStoreExtensions.) | |
SaveToFile(String, IStoreWriter) | Overloaded.
Saves a Triple Store to a file.
(Defined by TripleStoreExtensions.) |
A Store which supports this may implement various access control mechanisms which limit what operations are actually permitted.
It is the responsibility of the Store class to ensure that commands are permissible before invoking them.