SDK
SDK C# v2.x
2

DeleteSpecificationsAsync #

Deletes the validation specifications associated with the collection.

Arguments #

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

Usage #

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