Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Js

Idiom #183 Make HTTP PUT request

Make a HTTP request with method PUT to the URL u

fetch(u, {
        method: "PUT",
	body: JSON.stringify(data)
})
using System.Net.Http;
new HttpClient().PutAsync(u, content);

New implementation...
< >
programming-idioms.org