Create a new store

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

Syntax

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

Parameters

storeName
Type: System..::..String
The name of the store to create.

Implements

IBrightstarService..::..CreateStore(String)

Remarks

See StoreNameRegex for the regular expression used to validate store names.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionRaised if storeName is NULL
System..::..ArgumentExceptionRaised if storeName is an empty string or does not match the allowed regular expression production for store names.

See Also