StoreGraphPersistenceWrapper Constructor (IStorageProvider, IGraph, Boolean) |
Creates a new Store Graph Persistence Wrapper.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public StoreGraphPersistenceWrapper(
IStorageProvider manager,
IGraph g,
bool writeOnly
)
Public Sub New (
manager As IStorageProvider,
g As IGraph,
writeOnly As Boolean
)
Parameters
- manager
- Type: VDS.RDF.StorageIStorageProvider
Generic IO Manager. - g
- Type: VDS.RDFIGraph
Graph to wrap. - writeOnly
- Type: SystemBoolean
Whether to operate in write-only mode.
Remarks Note: 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