Click or drag to resize

StoreGraphPersistenceWrapper Constructor (IStorageProvider, IGraph, Uri, Boolean)

Creates a new Store Graph Persistence Wrapper.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public StoreGraphPersistenceWrapper(
	IStorageProvider manager,
	IGraph g,
	Uri graphUri,
	bool writeOnly
)

Parameters

manager
Type: VDS.RDF.StorageIStorageProvider
Generic IO Manager.
g
Type: VDS.RDFIGraph
Graph to wrap.
graphUri
Type: SystemUri
Graph URI (the URI the Graph will be persisted as).
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