SDK
SDK C# v1.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

ListAsync #

Gets the complete list of indexes handled by Kuzzle.

Arguments #

Copied to clipboard!
Task<JArray> ListAsync();

Return #

Returns a JArray containing the list of index names handled by Kuzzle.

Usage #

Copied to clipboard!
JArray indexes = await kuzzle.Index.ListAsync();
Console.WriteLine($"Kuzzle contains {indexes.Count} indexes");