SDK
SDK C# v2.x
2

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");