Delete the named store
Namespace: BrightstarDB.ClientAssembly: 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
The name of the store to be deleted
Implements
IDataObjectContext..::..DeleteStore(String)
Exceptions
| Exception | Condition |
|---|
| System..::..NotSupportedException | raised if the underlying DotNetRDF storage server does not support deleting the store |
| BrightstarDB..::..BrightstarInternalException | raised if the underlying DotNetRDF storage server implementation raises an exception during this operation.
The underlying server exception will be contained in the InnerException property of the BrightstarInternalException. |
See Also