Logo

Programming-Idioms

History of Idiom 183 > diff from v9 to v10

Edit summary for version 10 by chosenHosen:
[Csharp] simplify naming

Version 9

2019-09-28, 15:06:05

Version 10

2019-09-28, 15:21:20

Idiom #183 Make HTTP PUT request

Make a HTTP request with method PUT to URL u

Idiom #183 Make HTTP PUT request

Make a HTTP request with method PUT to URL u

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