-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use System.Net.Http
instead of Windows.Web.Http
#232
Comments
|
For example, here's a stacktrace:
|
@mqudsi it depends the runtime(uwp,.net frm, .net core, xamarin, etc). Windows.Web.Http is windows specific. Using System.Net.Http you can target all the .net ecosystem. |
In Windows 10, the implementation of the
System.Net.Http
API for UWP has been changed to layer it on top ofWindows.Web.Http
and the WinINet HTTP stack of Windows.System.Net.Http
seems more general and more widely used. We should change our implementation to use the "new" API.See: Demystifying HttpClient APIs in the Universal Windows Platform
The text was updated successfully, but these errors were encountered: