Deletes all data from the specified store

Namespace: BrightstarDB.Client
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public override void DeleteStore(
	string storeName
)
Visual Basic
Public Overrides Sub DeleteStore ( 
	storeName As String
)
Visual C++
public:
virtual void DeleteStore(
	String^ storeName
) override
F#
abstract DeleteStore : 
        storeName : string -> unit 
override DeleteStore : 
        storeName : string -> unit 

Parameters

storeName
Type: System..::..String

Implements

IDataObjectContext..::..DeleteStore(String)

Remarks

This implementation of DeleteStore differs slightly from the basic BrightstarDB implementation. Rather than removing the store completely, this method simply clears all RDF data in the store. It can only be executed against DotNetRDF storage providers that support listing of graphs and graph deletion. For stores that either do not support these operaitons or which are marked as readonly, this method will raise a NotSupportedException

See Also