Why is there both a System.Net.Http and System.Web.Http namespace?

后端 未结 5 1395
渐次进展
渐次进展 2021-01-31 01:34

Just a simple question as I\'m studying the various class libraries available in .NET. I noticed that there\'s a System.Net.Http namespace and a System.Web.H

5条回答
  •  北海茫月
    2021-01-31 02:08

    "System.Web.Http" is used for creating WebAPIs.

    "System.Net.Http" is used for consuming WebAPIs (using HttpClient class)

提交回复
热议问题