Is WebRequest The Right C# Tool For Interacting With Websites?

前端 未结 7 1607
醉梦人生
醉梦人生 2020-12-23 13:17

I\'m writing a small tool in C# which will need to send and receive data to/from a website using POST and json formatting. I\'ve never done anything like this before in C#

相关标签:
7条回答
  • 2020-12-23 13:52

    in 3.5 there is a built-in jsonserializer. The webrequest is the right class your looking for.

    A few examples:

    • http://geekswithblogs.net/JuanDoNeblo/archive/2007/10/24/json_in_aspnetajax_part2.aspx
    • http://dev.aol.com/blog/markdeveloper/ShareFileWithNETFramework
    • http://geekswithblogs.net/JuanDoNeblo/archive/2007/10.aspx
    0 讨论(0)
提交回复
热议问题