Logo

Programming-Idioms

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

Idiom #183 Make HTTP PUT request

Make a HTTP request with method PUT to the URL u

using System.Net.Http;
new HttpClient().PutAsync(u, content);

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