Why UnityWebRequest.Delete downloadHandler is null?

Why downloadHandler of UnityWebRequest instance created by UnityWebRequest.Delete method is null? And how to fix or get around this?

it was easier than I thought :slight_smile:

var request = UnityWebRequest.Delete(url);
request.downloadHandler = new DownloadHandlerBuffer();