C# POST 전송

0 투표

There are several ways to perform HTTP GET and POST requests:


Method A: HttpClient

Available in: .NET Framework 4.5+, .NET Standard 1.1+, .NET Core 1.0+

Currently the preferred approach. Asynchronous. Portable version for other platforms available via NuGet.

using System.Net.Http;

Setup

It is recommended to instantiate one HttpClient for your application's lifetime and share it.

private static readonly HttpClient client = new HttpClient();

POST

var values = new Dictionary<string, string>
{
   { "name", "nanumtip" },
   { "domain", "nanumtip.com" }
};

var content = new FormUrlEncodedContent(values);

var response = await client.PostAsync("https://www.nanumtip.com/qa/ask", content);

var responseString = await response.Content.ReadAsStringAsync();

GET

var responseString = await client.GetStringAsync("https://www.nanumtip.com/qa/ask");

당신의 답변

보여지는 당신의 이름 (옵션):
개인정보 보호: 이메일 주소는 이 알림을 발송하기 위해 사용됩니다.
안티-스팸 확인:
앞으로 이 검증을 피하려면,로그인 혹은 가입 하시기바랍니다.
구로역 맛집 시흥동 맛집
이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.
add
...