Merge pull request #4846 from aspnet/Rick-Anderson-patch-2

Update tutorial-your-first-web-api.md
pull/4856/head
Rick Anderson 2017-11-22 14:38:17 -10:00 committed by GitHub
commit fa1143c886
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 12 deletions

View File

@ -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