About 110,000 results
Open links in new tab
  1. Make HTTP requests with the HttpClient - .NET | Microsoft Learn

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

  2. C# HttpClient - creating HTTP requests with HttpClient in C#

    Jul 5, 2023 · C# HttpClient tutorial shows how to create HTTP requests with HttpClient in C#. In the examples, we create simple GET, HEAD, and POST requests.

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

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

    Sep 3, 2025 · Each approach to implementing HttpClient—basic usage, HttpClientFactory, typed clients, and third-party libraries like Refit—has its own strengths. The right choice depends on …

  5. ASP.NET Core HttpClient Tutorial - Julio Casal

    Jun 8, 2024 · In this tutorial, I’ll show you how to use the HttpClient in your ASP.NET Core apps to make HTTP requests to other services or APIs. It is almost inevitable that sooner than later …

  6. C# tutorials : Making HTTP requests with `HttpClient`

    This tutorial demonstrates how to make HTTP requests using the `HttpClient` class in C#. `HttpClient` is a fundamental class in the .NET framework for sending HTTP requests and …

  7. Mastering HTTP Requests in C# with HttpClient - Web Dev Tutor

    Jul 22, 2024 · In C#, the HttpClient class provides a flexible and powerful way to send HTTP requests, handle responses, and manage connections. In this guide, we will explore how to …

  8. Tutorial: Make HTTP requests in a .NET console app - C#

    Oct 28, 2025 · Learn how to make HTTP requests to a REST web service and deserialize JSON responses. This tutorial creates a .NET console and uses C#.

  9. Http Client in C#

    Our example demonstrates how to create a simple HTTP client using C#. We’ll use the System.Net.Http namespace, which provides excellent support for HTTP clients. In this …

  10. Consume Web API in .NET using HttpClient - TutorialsTeacher.com

    Here, we will use HttpClient class in console application to send data to and receive data from Web API which is hosted on local IIS web server. You may use HttpClient in other .NET …