Checks for the existence of a store with the given name

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

Syntax

C#
public override bool DoesStoreExist(
	string storeName
)
Visual Basic
Public Overrides Function DoesStoreExist ( 
	storeName As String
) As Boolean
Visual C++
public:
virtual bool DoesStoreExist(
	String^ storeName
) override
F#
abstract DoesStoreExist : 
        storeName : string -> bool 
override DoesStoreExist : 
        storeName : string -> bool 

Parameters

storeName
Type: System..::..String
Name of the store to check for

Return Value

Type: Boolean
True if the store exists, false otherwise

Implements

IDataObjectContext..::..DoesStoreExist(String)

See Also