Click or drag to resize

IInferencingTripleStore Interface

Interface for Triple Stores which can have a IInferenceEngine attached to them.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public interface IInferencingTripleStore : ITripleStore, 
	IDisposable

The IInferencingTripleStore type exposes the following members.

Properties
  NameDescription
Public propertyGraphs
Gets the Graph Collection of Graphs in this Triple Store.
(Inherited from ITripleStore.)
Public propertyIsEmpty
Gets whether a TripleStore is Empty.
(Inherited from ITripleStore.)
Public propertyItem
Gets a Graph from the Triple Store;.
(Inherited from ITripleStore.)
Public propertyTriples
Gets all the Triples in the Triple Store which are currently loaded in memory (see remarks).
(Inherited from ITripleStore.)
Top
Methods
  NameDescription
Public methodAdd(IGraph)
Adds a Graph into the Triple Store.
(Inherited from ITripleStore.)
Public methodAdd(IGraph, Boolean)
Adds a Graph into the Triple Store.
(Inherited from ITripleStore.)
Public methodAddFromUri(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.)
Public methodAddFromUri(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.)
Public methodAddInferenceEngine
Adds an Inference Engine to the Triple Store.
Public methodApplyInference
Applies Inference to the given Graph.
Public methodClearInferenceEngines
Clears all Inference Engines from the Triple Store.
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable.)
Public methodHasGraph
Checks whether the Graph with the given Uri is in this Triple Store.
(Inherited from ITripleStore.)
Public methodRemove
Removes a Graph from the Triple Store.
(Inherited from ITripleStore.)
Public methodRemoveInferenceEngine
Removes an Inference Engine from the Triple Store.
Top
Events
  NameDescription
Public eventGraphAdded
Event which is raised when a Graph is added
(Inherited from ITripleStore.)
Public eventGraphChanged
Event which is raised when a Graphs contents changes
(Inherited from ITripleStore.)
Public eventGraphCleared
Event which is raised when a Graph is cleared
(Inherited from ITripleStore.)
Public eventGraphMerged
Event which is raised when a Graph has a merge operation performed on it
(Inherited from ITripleStore.)
Public eventGraphRemoved
Event which is raised when a Graph is removed
(Inherited from ITripleStore.)
Top
Extension Methods
  NameDescription
Public Extension MethodLoadFromEmbeddedResource(String)Overloaded.
Loads an RDF dataset from an Embedded Resource into a Triple Store.
(Defined by TripleStoreExtensions.)
Public Extension MethodLoadFromEmbeddedResource(String, IStoreReader)Overloaded.
Loads an RDF dataset from an Embedded Resource into a Triple Store.
(Defined by TripleStoreExtensions.)
Public Extension MethodLoadFromFile(String)Overloaded.
Loads an RDF dataset from a file into a Triple Store.
(Defined by TripleStoreExtensions.)
Public Extension MethodLoadFromFile(String, IStoreReader)Overloaded.
Loads an RDF dataset from a file into a Triple Store.
(Defined by TripleStoreExtensions.)
Public Extension MethodLoadFromString(String)Overloaded.
Loads an RDF dataset from a String into a Triple Store.
(Defined by TripleStoreExtensions.)
Public Extension MethodLoadFromString(String, IStoreReader)Overloaded.
Loads an RDF dataset from a String into a Triple Store.
(Defined by TripleStoreExtensions.)
Public Extension MethodLoadFromUri(Uri)Overloaded.
Loads an RDF dataset from a URI into a Triple Store.
(Defined by TripleStoreExtensions.)
Public Extension MethodLoadFromUri(Uri, IStoreReader)Overloaded.
Loads an RDF dataset from a URI into a Triple Store.
(Defined by TripleStoreExtensions.)
Public Extension MethodSaveToFile(String)Overloaded.
Saves a Triple Store to a file.
(Defined by TripleStoreExtensions.)
Public Extension MethodSaveToFile(String, IStoreWriter)Overloaded.
Saves a Triple Store to a file.
(Defined by TripleStoreExtensions.)
Top
See Also