Logo

Programming-Idioms

History of Idiom 174 > diff from v13 to v14

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

Version 13

2019-09-27, 15:46:40

Version 14

2019-09-28, 15:20:22

Idiom #174 Make HTTP POST request

Make a HTTP request with method POST to URL u

Idiom #174 Make HTTP POST request

Make a HTTP request with method POST to URL u

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