Is there a way to do a PUT with WebClient?

后端 未结 4 1130
长发绾君心
长发绾君心 2021-02-11 13:59

with the WebClient class in .NET 4.0, is there a way to do a PUT?

I know you can do a GET with DownloadString() and a POST with UploadString(), but is there a method or

4条回答
  •  长发绾君心
    2021-02-11 14:21

    I don't think that WebClient can do it. However, you can use the HttpWebrequest class to perform a put request.

提交回复
热议问题