SnapClientContains Method

Determines if databaseName is contained in the database.

Definition

Namespace: SnapDB.Snap.Services
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public abstract bool Contains(
	string databaseName
)

Parameters

databaseName  String
The name of the database to check for existence.

Return Value

Boolean
true if a database with the specified name exists; otherwise, false.

Remarks

The Contains(String) method allows you to check whether a database with the specified databaseName exists within the system. It returns true if a database with the provided name is found; otherwise, it returns false.

See Also