SnapClientContains Method
Determines if databaseName is contained in the database.
Namespace: SnapDB.Snap.ServicesAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public abstract bool Contains(
string databaseName
)
Public MustOverride Function Contains (
databaseName As String
) As Boolean
public:
virtual bool Contains(
String^ databaseName
) abstract
function Contains(databaseName);
- databaseName String
- The name of the database to check for existence.
Booleantrue if a database with the specified name exists; otherwise,
false.
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.