About 146,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. 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. Apache HttpComponents – HttpClient Overview

    Oct 26, 2025 · 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 …

  5. 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.

  6. 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 …

  7. Mastering HttpClient In NET: Best Practices For Secure And …

    HttpClient is a cornerstone of modern .NET applications, enabling HTTP communication with RESTful APIs, microservices, and cloud resources. However, misuse can lead to performance …

  8. HTTP Client in C#: Best Practices for Experts - Medium

    Jan 17, 2025 · In C#, working with HttpClient requires understanding how to create it correctly, implementing middleware, ensuring resilience, handling retries, using circuit-breaker, and …

  9. HttpClient for accessing APIs in .NET (Updated for .NET8)

    Oct 4, 2024 · HttpClient is the go-to class for making HTTP requests in .NET, providing a high-level abstraction that makes it simple to perform CRUD operations, send and receive JSON, …

  10. 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 …