deleteUrl method
Opens a HTTP connection using the DELETE method.
The URL to use is specified in url
.
See openUrl for details.
Implementation
@override
Future<HttpClientRequest> deleteUrl(Uri url) async {
Marker? marker = await _createMarker(url.toString(), 'DELETE');
try {
var request = await _httpClient.deleteUrl(url);
return InstanaHttpClientRequest(request, marker);
} catch (e) {
_reportError(marker, e.toString());
rethrow;
}
}