Click or drag to resize

IDatabaseApiClient Interface

Defines a client for the ArangoDB Database API.

Namespace:  ArangoDBNetStandard.DatabaseApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public interface IDatabaseApiClient

The IDatabaseApiClient type exposes the following members.

Methods
  NameDescription
Public methodDeleteDatabaseAsync
Delete a database. Dropping a database is only possible from within the _system database. The _system database itself cannot be dropped. DELETE /_api/database/{database-name}
Public methodGetCurrentDatabaseInfoAsync
Retrieves information about the current database.
Public methodGetDatabasesAsync
Retrieves the list of all existing databases. (Only possible from within the _system database)
Public methodGetUserDatabasesAsync
Retrieves the list of all databases the current user can access.
Public methodPostDatabaseAsync
Creates a new database. (Only possible from within the _system database)
Top
See Also