Click or drag to resize

ManagerIsValidDatabaseName Method

Determines if the given name is a valid Database name. Only the following characters are valid: abcdefghijklmnopqrstuvwxyz0123456789_$()+-/

Namespace:  Couchbase.Lite
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 1.4.1-b107
Syntax
C#
public static bool IsValidDatabaseName(
	string name
)

Parameters

name
Type: SystemString
The Database name to validate.

Return Value

Type: Boolean
true if the given name is a valid Database name, otherwise false.
See Also