टी एल; 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
फ़ील्ड) से एक गैर-स्थिर फ़ील्ड तक पहुँचने का प्रयास कर रहे हैं । इसके अलावा, आप वास्तव में इसे किसी भी चीज़ के लिए उपयोग नहीं करते हैं। आप शायद इसे हटा सकते हैं।