कोड निहारना:डेटा पोस्ट करने के बाद वेब क्लाइंट प्रतिक्रिया कैसे पढ़ा जाए?
using (var client = new WebClient())
{
using (var stream = client.OpenWrite("http://localhost/", "POST"))
{
stream.Write(post, 0, post.Length);
}
}
अब, मैं HTTP उत्पादन कैसे पढ़ा करते हैं?
इसके अलावा http://stackoverflow.com/questions/1694388/webclient-vs-httpwebrequest-httpwebresponse देखें:
और यहाँ अनुकूलित WebClient है। – DuckMaestro