Image deletion in .NET v0.8.0 and TypeScript v0.5.0
The official .NET and TypeScript clients now support deleting images through the API:
- Delete one image with
DeleteImageAsyncin .NET ordeleteImagein TypeScript. - Delete multiple images in one request with
DeleteImageBatchAsyncin .NET ordeleteImageBatchin TypeScript.
The .NET client’s ApiResult<T> now implements IDisposable because it owns the raw HttpResponseMessage. The raw response remains available when you need headers, the originating request, or other transport details. C# callers should use using or using var when reading API results.