Logo

Programming-Idioms

History of Idiom 183 > diff from v8 to v9

Edit summary for version 9 by chosenHosen:
New Csharp implementation by user [chosenHosen]

Version 8

2019-09-27, 19:11:23

Version 9

2019-09-28, 15:06:05

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;
Code
new HttpClient().PutAsync(u, optionalContent);