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

    // HttpClient is intended to be instantiated once per application, rather than per-use. See Remarks. static readonly HttpClient client = new HttpClient(); static async Task Main() { // Call …

  2. Apache HttpComponents – HttpClient Overview

    2 days ago · Designed for extension while providing robust support for the base HTTP protocol, HttpClient may be of interest to anyone building HTTP-aware client applications such as web …

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

    Once built, an HttpClient is immutable, and can be used to send multiple requests. An HttpClient provides configuration information, and resource sharing, for all requests sent through it.

  4. Maven Repository: org.apache.httpcomponents » httpclient

    Apache HttpClient HTTPClient provides an efficient, up-to-date, and feature-rich package implementing the client side of the most recent HTTP standards and recommendations.

  5. The Right Way To Use HttpClient In .NET - Milan Jovanovic

    Jun 10, 2023 · The easy way to make HTTP requests in .NET is to use the HttpClient to send those requests. And it's a great abstraction to work with, especially with the methods …

  6. Introduction to the Java HTTP Client - OpenJDK

    The HttpClient is effectively a Subscriber of request body and a Publisher of response body bytes. The BodyHandler interface allows inspection of the response code and headers, before the …

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

    Mar 9, 2025 · Learn how to make HTTP requests and handle responses with the HttpClient in .NET.

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

    In this guide, you will learn everything you need to know about using HttpClient. From the basics of making requests to advanced topics such as handling timeouts, authentication, and …

  9. HTTP Requests in .NET Core with HttpClient and HttpClientFactory

    HttpClient is a class in the System.Net.Http namespace that enables developers to send HTTP requests and receive HTTP responses. It's lightweight and designed for creating and …

  10. Back to .NET basics: How to properly use HttpClient

    Aug 3, 2023 · HttpClient is used to make HTTP requests to web servers and APIs, and it relies on underlying network connections to perform these tasks. By leveraging the netstat command, …