Wednesday, September 26, 2018

Web API - Some basics

Web API - Some basics

What is ASP.Net Web API

API means Application Programming Interface.
This is a framework for building 
HTTP based services on top of .Net Framework

These services can be consumed by mobile devices, tablets, browsers and desktop applications

REST means Representational State Transfer, is an architectural pattern 
for creating services.

A client sends a request to server and server responds

Standard HTTP methods 

GET - To retrieve data from resource

POST - Creates a new entry for data and send to server

PUT - Updates data

DELETE - Delete specific data from server



No comments:

Post a Comment