Routing in ASP.Net Web API

In this blog, we will see about Routing system in ASP.Net Web API. Routing is one of the important section in ASP.Net Web API. What is Routing? Routing is the process which decides which action and which controller should be called. Convention-based Routing Once you create a Web API project in Visual Studio, you will … Read more

What are Idempotent and Non-Idempotent methods?

After reading this article, you will be confident about Idempotent and Non-Idempotent methods?Let’s start by understanding the meaning of Idempotent.Idempotent means  “unchanged in value following multiplication by itself” Idempotent Methods Idempotent HTTP methods are those methods which will not make any modification event after calling multiple times.For eg – If your client makes a DELETE request by … Read more

How to create ASP.Net Web API

In this blog, I have created ASP.Net web api using Visual Studio 2015.If you need to know what is web api then please read one of my previous blog. Follow the below steps to create ASP.Net Web API Open Visual Studio 2015 and follow the below steps:1. File -> New Project and Select ASP.Net Web … Read more