
Build RESTful APIs with ASP.NET Web API - ASP.NET 4.x
May 11, 2022 · Exercise 1: Create a Read-Only Web API; Exercise 2: Create a Read/Write Web API; Exercise 3: Consume the Web API from an HTML Client
Tutorial: Create a controller-based web API with ASP.NET Core
This tutorial uses Endpoints Explorer and .http files to test the API. Create API testing UI with Swagger. There are many available web API testing tools to choose from, and you can follow …
Tutorial: Make HTTP requests in a .NET console app - C#
Oct 29, 2022 · Learn how to make HTTP requests to a REST web service and deserialize JSON responses. This tutorial creates a .NET console and uses C#.
Get Started with ASP.NET Web API 2 (C#) - ASP.NET 4.x
Sep 29, 2022 · In this tutorial, you will use ASP.NET Web API to create a web API that returns a list of products. HTTP is not just for serving up web pages. HTTP is also a powerful platform …
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.
Consume a REST-based web service - .NET MAUI | Microsoft Learn
Sep 24, 2024 · A .NET Multi-platform App UI (.NET MAUI) app can consume a REST-based web service by sending requests to the web service with the HttpClient class. This class provides …
Create web APIs with ASP.NET Core | Microsoft Learn
Jun 1, 2024 · ASP.NET Core supports creating RESTful services, also known as web APIs, using C#. To handle requests, a web API uses controllers. Controllers in a web API are classes that …
Creating a simple REST API with .NET Core, Azure SQL Database …
Aug 6, 2024 · A little sample showcasing a REST API backed by an Azure SQL database and powered by FusionCache, to achieve top performance and robustness. 👩🏫 What is this about? …
Create serverless APIs using Azure Functions and API Management
Aug 7, 2024 · REST APIs are often described using an OpenAPI definition (formerly known as Swagger) file. This file contains information about operations in an API and how the request …
Quickstart: Blazor Server Web API sample (C#) (Microsoft …
Oct 18, 2023 · In this quickstart, you create a Blazor Server application to connect to your Microsoft Dataverse environment using the Web API. You authenticate and use HttpClient to …