From afc8773aaa872ea08170d1f8574c684b9b38e13c Mon Sep 17 00:00:00 2001 From: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com> Date: Thu, 15 Jul 2021 08:35:01 -0700 Subject: [PATCH] Update index.md --- aspnetcore/web-api/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aspnetcore/web-api/index.md b/aspnetcore/web-api/index.md index 52730054a8..b9fd72766b 100644 --- a/aspnetcore/web-api/index.md +++ b/aspnetcore/web-api/index.md @@ -11,6 +11,8 @@ uid: web-api/index --- # Create web APIs with ASP.NET Core + + By [Scott Addie](https://github.com/scottaddie) and [Tom Dykstra](https://github.com/tdykstra) 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 derive from `ControllerBase`. This article shows how to use controllers for handling web API requests.