StoreGraphPersistenceWrapper Constructor (IStorageProvider, IGraph, Boolean) |
Creates a new Store Graph Persistence Wrapper.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntaxpublic StoreGraphPersistenceWrapper(
IStorageProvider manager,
IGraph g,
bool writeOnly
)
Public Sub New (
manager As IStorageProvider,
g As IGraph,
writeOnly As Boolean
)
Parameters
- manager
- Type: VDS.RDF.Storage.IStorageProvider
Generic IO Manager. - g
- Type: VDS.RDF.IGraph
Graph to wrap. - writeOnly
- Type: System.Boolean
Whether to operate in write-only mode.
RemarksNote: In order to operate in write-only mode the IStorageProvider must support triple level updates indicated by it returning true to its UpdateSupported property and the Graph to be wrapped must be an empty Graph.
See Also