About 15,100 results
Open links in new tab
  1. HttpClient Class (System.Net.Http) | Microsoft Learn

    Provides a class for sending HTTP requests and receiving HTTP responses from a resource identified by a URI.

  2. Make HTTP requests with the HttpClient - .NET | Microsoft Learn

    Learn how to make HTTP requests and handle responses with the HttpClient in .NET.

  3. HttpClient guidelines for .NET - .NET | Microsoft Learn

    Oct 22, 2025 · Learn about using HttpClient instances to send HTTP requests and how you can manage clients using IHttpClientFactory in your .NET apps.

  4. System.Net.Http.HttpClient class - .NET | Microsoft Learn

    Jan 17, 2025 · HttpClient is intended to be instantiated once and reused throughout the life of an application. In .NET Core and .NET 5+, HttpClient pools connections inside the handler instance and …

  5. Apache HttpComponents – HttpClient Overview

    3 days ago · HttpClient seeks to fill this void by providing an efficient, up-to-date, and feature-rich package implementing the client side of the most recent HTTP standards and recommendations.

  6. How To Implement HttpClient in C# (4 Ways) - DEV Community

    Sep 3, 2025 · How To Implement HttpClient in C# (4 Ways) # httpclient # dotnet # csharp # apiintegration HttpClient in .NET simplifies calling REST APIs by sending HTTP requests and …

  7. HttpClient Constructor (System.Net.Http) | Microsoft Learn

    HttpClient is intended to be instantiated once and reused throughout the life of an application. Instantiating an HttpClient class for every request will exhaust the number of sockets available under …

  8. Make HTTP requests using IHttpClientFactory in ASP.NET Core

    Aug 28, 2025 · Learn about using the IHttpClientFactory interface to manage logical HttpClient instances in ASP.NET Core.

  9. HttpClient (Java SE 11 & JDK 11 ) - Oracle

    HttpClient is created through a builder. The builder can be used to configure per-client state, like: the preferred protocol version ( HTTP/1.1 or HTTP/2 ), whether to follow redirects, a proxy, an …

  10. C# HttpClient: The Complete Guide [2023] - Josip Misko

    C# HttpClient: The Complete Guide The C# HttpClient class is a powerful tool that make sending HTTP requests a breeze. In this guide, you will learn everything you need to know about using HttpClient. …