HttpClient not supporting PostAsJsonAsync method C#

前端 未结 12 1026
花落未央
花落未央 2020-11-27 10:37

I am trying to call a web API from my web application. I am using .Net 4.5 and while writing the code I am getting the error HttpClient does not contain a defin

12条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-27 11:32

    For me I found the solution after a lot of try which is replacing

    HttpClient
    

    with

    System.Net.Http.HttpClient
    

提交回复
热议问题