DeleteSpecificationsAsync #
Deletes the validation specifications associated with the collection.
Arguments #
public async Task DeleteSpecificationsAsync(
string index,
string collection);
Argument | Type | Description |
---|---|---|
index | string | Index name |
collection | string | Collection name |
Usage #
try {
await kuzzle.Collection.DeleteSpecificationsAsync("nyc-open-data", "yellow-taxi");
Console.WriteLine("Specifications successfully deleted");
} catch (Exception e) {
Console.WriteLine(e);
}
Edit this page on Github(opens new window)