Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
ASP.NET Core MVC 2.0 Cookbook

You're reading from   ASP.NET Core MVC 2.0 Cookbook Effective ways to build modern, interactive web applications with ASP.NET Core MVC 2.0

Arrow left icon
Product type Paperback
Published in Feb 2018
Publisher
ISBN-13 9781785886751
Length 668 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Authors (3):
Arrow left icon
Engin Polat Engin Polat
Author Profile Icon Engin Polat
Engin Polat
Jason De Oliveira Jason De Oliveira
Author Profile Icon Jason De Oliveira
Jason De Oliveira
Stephane Belkheraz Stephane Belkheraz
Author Profile Icon Stephane Belkheraz
Stephane Belkheraz
Arrow right icon
View More author details
Toc

Table of Contents (21) Chapters Close

Preface 1. Cross-Platform with .NET Core 2. Visual Studio 2017, C# 6, IDEs, and Roslyn FREE CHAPTER 3. Working with npm, Frontend Package Managers, and Task Runners 4. Reusing Code with NuGet 5. SOLID Principles, Inversion of Control, and Dependency Injection 6. Data Access - EF7 with Repository, SQL Server, and Stored Procedures 7. Accessing data with Micro ORMs, NoSQL, and Azure 8. Cache and Session - Distributed, Server, and Client 9. Routing 10. ASP.NET Core MVC 11. Web API 12. Filters 13. Views, Models, and ViewModels 14. Razor and Views 15. TagHelpers and ViewComponents 16. OWIN and Middleware 17. Security 18. Frontend Development 19. Deployment and Hosting 20. Other Books You May Enjoy

Using Swagger


In this recipe, you will learn how to use Swagger to create help pages and documentation for our REST APIs.

Getting ready

Let's create an empty project with VS 2017.

How to do it...

  1. First, let's add the Swashbuckle reference to the project:
"Swashbuckle": "5.6.0"
  1. Next, let's add Swagger as a middleware in Startup.cs:
public void ConfigureServices(IServiceCollection services)
{
  services.AddMVC();
  services.AddSwaggerGen();
}
public void Configure(IApplicationBuilder app)
{
  app.UseMVC();
  app.UseSwagger();
  app.UseSwaggerUi();
}
  1. Now, let's launch our API documentation by going to http://{UrlAPI}/swagger/ui. We can now see the generated API documentation:
  1. When we click on each HTTP method, we can see all the options Swagger offers to us, such as testing the API, easily:
  1. Next, let's use another feature: adding information about the API. To do this, let's add this code to Startup.cs:
public class Startup
{
  public Startup(IHostingEnvironment env)
  {
    var builder = new ConfigurationBuilder...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime