Click or drag to resize

StoreGraphPersistenceWrapper Constructor (IStorageProvider, Uri, Boolean)

Creates a new Store Graph Persistence Wrapper around a new empty Graph.

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

Parameters

manager
Type: VDS.RDF.StorageIStorageProvider
Generic IO Manager.
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.

When not operating in write-only mode the existing Graph will be loaded from the underlying store.

See Also