День добрый!
Подскажите как вставит этот код в ZennoPoster:
В GAC подключил, using прописал
Смущает:
namespace CSHttpClientSample,
static class Program,
static void Main(),
static async void MakeRequest
Подскажите как вставит этот код в ZennoPoster:
Код:
using System;
using System.Net.Http.Headers;
using System.Text;
using System.Net.Http;
using System.Web;
namespace CSHttpClientSample
{
static class Program
{
static void Main()
{
MakeRequest();
Console.WriteLine("Hit ENTER to exit...");
Console.ReadLine();
}
static async void MakeRequest()
{
var client = new HttpClient();
var queryString = HttpUtility.ParseQueryString(string.Empty);
// Request headers
var uri = "http://testapi.novaposhta.ua/v2.0/{format}/AddressGeneral/getWarehouses?" + queryString;
HttpResponseMessage response;
// Request body
byte[] byteData = Encoding.UTF8.GetBytes("{body}");
using (var content = new ByteArrayContent(byteData))
{
content.Headers.ContentType = new MediaTypeHeaderValue("< your content type, i.e. application/json >");
response = await client.PostAsync(uri, content);
}
}
}
}
Смущает:
namespace CSHttpClientSample,
static class Program,
static void Main(),
static async void MakeRequest