SDK
SDK C# v2.x
2

TruncateAsync #

Removes all documents from a collection while keeping the associated mappings.

Arguments #

Copied to clipboard!
public async Task TruncateAsync(
        string index,
        string collection);
Argument Type Description
index
string
Index name
collection
string
Collection name

Usage #

Copied to clipboard!
try {
  await kuzzle.Collection.TruncateAsync("nyc-open-data", "yellow-taxi");
  Console.WriteLine("Collection successfully truncated");
} catch (Exception e) {
  Console.WriteLine(e);
}