When using URLConnetion.Send with the method DELETE like URLConnection.Send(“DELETE”, URL) it actually deletes the record but where can I receive confirmation? Documentation of URLConnection states de ContentReceived event is raised when the method is GET. The RESTful API I am connecting to is supposed to send a json text stating a successful deletion.
You should get it in ContentReceived. That fires regardless of the request.
Thanks. I was misunderstanding what the Documentation states. I thought ContentReceived event was only fired when SEND was used with GET method.