Aggiunto metodo tramite WebAPI x chiamate REST

This commit is contained in:
Samuele E. Locatelli
2020-09-22 22:05:31 +02:00
parent 76841fb5d8
commit 309169abb3
8 changed files with 497 additions and 332 deletions
+41
View File
@@ -0,0 +1,41 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
namespace MP_IO.Controllers.WebAPI
{
public class IOBController : ApiController
{
// GET api/IOB
//[ResponseCache(Duration = 10)]
[HttpGet]
public string Get()
{
return "OK";
}
// GET api/<controller>/5
public string Get(int id)
{
return "value";
}
// POST api/<controller>
public void Post([FromBody]string value)
{
}
// PUT api/<controller>/5
public void Put(int id, [FromBody]string value)
{
}
// DELETE api/<controller>/5
public void Delete(int id)
{
}
}
}