Skip to main content

Operations: Server: How to Get the Names of Databases on a Server

To download available database names from a server, use the GetDatabaseNames operation.

Syntax

public GetDatabaseNamesOperation(int start, int pageSize)
Parameters
pageSizeintMaximum number of records that will be downloaded
startintNumber of records that should be skipped.
Return Value
string[]Names of databases on a server

Example

var operation = new GetDatabaseNamesOperation(0, 25);
string[] databaseNames = store.Maintenance.Server.Send(operation);