TL; DR : 저는이 언어를 처음 사용하고 제가 무엇을하는지 모르겠습니다.
지금까지 내 수업은 다음과 같습니다.
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Web;
using System.Net;
using System.IO;
public class MyClass
{
private const string URL = "https://sub.domain.com/objects.json?api_key=123";
private const string data = @"{""object"":{""name"":""Title""}}";
public static void CreateObject()
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(URL);
request.Method = "POST";
request.ContentType = "application/json";
request.ContentLength = data.Length;
StreamWriter requestWriter = new StreamWriter(request.GetRequestStream(), System.Text.Encoding.ASCII);
requestWriter.Write(data);
requestWriter.Close();
try
{
// get the response
WebResponse webResponse = request.GetResponse();
Stream webStream = webResponse.GetResponseStream();
StreamReader responseReader = new StreamReader(webStream);
string response = responseReader.ReadToEnd();
responseReader.Close();
}
catch (WebException we)
{
string webExceptionMessage = we.Message;
}
catch (Exception ex)
{
// no need to do anything special here....
}
}
static void Main(string[] args)
{
MyClass.CreateObject();
}
}
csc filename.cs를 수행하면 다음 오류가 발생합니다.
형식 또는 네임 스페이스 이름 'Http'가 네임 스페이스 'System.Net'에 없습니다 (어셈블리 참조가 누락 되었습니까?).
webClient
필드) 에서 비 정적 필드에 액세스하려고합니다 . 또한 실제로 어떤 용도로도 사용하지 않습니다. 그냥 제거 할 수도 있습니다.