httpwebrequest

About this tag
HttpWebRequest is a legacy .NET class for sending HTTP requests, now largely superseded by HttpClient in modern applications. On WindowsForum.com, discussions cover its deprecation in Universal Windows Platform (UWP) apps, where developers are advised to use System.Net.Http.HttpClient or Windows.Web.Http.HttpClient instead. A known issue involves the HttpWebRequest.Abort method causing unresponsiveness in .NET Framework 3.5 applications, particularly with SSL connections timing out. A Microsoft hotfix addresses this problem. The tag reflects troubleshooting and migration guidance for developers maintaining older codebases or transitioning to newer HTTP APIs.
  1. News

    Demystifying HttpClient APIs in the Universal Windows Platform

    As a Universal Windows Platform (UWP) app developer, if you are trying to communicate over HTTP with a web service or any server endpoint, you have multiple API choices. Two of the most used and recommended APIs for implementing the HTTP client role in a managed UWP app are...
  2. News

    FIX: A .NET Framework 3.5-based application becomes unresponsive when a time-out issue occurs on a r

    Fixes an issue that occurs when the HttpWebRequest.Abort method is called in a .NET Framework 3.5-based application. The request to a service that uses the SSL protocol waits for a long time. More...
Back
Top