Код: Выделить всё
HttpClient client = new HttpClient();
HttpResponseMessage response = await client.GetAsync("https://remoteserver.com/php/getallrec.php");
response.EnsureSuccessStatusCode();
string responseBody = await response.Content.ReadAsStringAsync();
Как отправить параметры в файл .php с помощью HttpClient или каким-то другим способом?
Подробнее здесь: https://stackoverflow.com/questions/790 ... pplication