diff --git a/aspnet/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api.md b/aspnet/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api.md index 0187ea940e..c096690428 100644 --- a/aspnet/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api.md +++ b/aspnet/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api.md @@ -1,13 +1,12 @@ --- uid: web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api -title: "Getting Started with ASP.NET Web API 2 (C#) | Microsoft Docs" +title: Getting Started with ASP.NET Web API 2 (C#) author: MikeWasson description: "HTTP is not just for serving up web pages. It is also a powerful platform for building APIs that expose services and data. HTTP is simple, flexible, and ubiq..." ms.author: aspnetcontent manager: wpickett -ms.date: 05/28/2015 +ms.date: 11/28/2017 ms.topic: article -ms.assetid: b1ccc0d3-1fac-4622-ba15-ebf9ad249332 ms.technology: dotnet-webapi ms.prod: .net-framework msc.legacyurl: /web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api @@ -19,16 +18,17 @@ by [Mike Wasson](https://github.com/MikeWasson) [Download Completed Project](https://code.msdn.microsoft.com/Sample-code-of-Getting-c56ccb28) -> HTTP is not just for serving up web pages. It is also a powerful platform for building APIs that expose services and data. HTTP is simple, flexible, and ubiquitous. Almost any platform that you can think of has an HTTP library, so HTTP services can reach a broad range of clients, including browsers, mobile devices, and traditional desktop applications. -> -> ASP.NET Web API is a framework for building web APIs on top of the .NET Framework. In this tutorial, you will use ASP.NET Web API to create a web API that returns a list of products. -> -> ## Software versions used in the tutorial -> -> -> - [Visual Studio 2017](https://www.visualstudio.com/downloads/) -> - Web API 2 +HTTP is not just for serving up web pages. It is also a powerful platform for building APIs that expose services and data. HTTP is simple, flexible, and ubiquitous. Almost any platform that you can think of has an HTTP library, so HTTP services can reach a broad range of clients, including browsers, mobile devices, and traditional desktop applications. + +ASP.NET Web API is a framework for building web APIs on top of the .NET Framework. In this tutorial, you will use ASP.NET Web API to create a web API that returns a list of products. + + ## Software versions used in the tutorial + + - [Visual Studio 2017](https://www.visualstudio.com/downloads/) + - Web API 2 + +See [Create a web API with ASP.NET Core and Visual Studio for Windows](https://docs.microsoft.com/aspnet/core/tutorials/first-web-api) for a newer version of this tutorial. ## Create a Web API Project