1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using Microsoft.AspNetCore.Mvc;
- using System.Collections.Generic;
- // For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
- namespace WebApi.Controllers
- {
- [Route("api/[controller]")]
- [ApiController]
- public class ValuesController : ControllerBase
- {
- // GET: api/<ValuesController>
- [HttpGet]
- public IEnumerable<string> Get()
- {
- return new string[] { "value1", "value2" };
- }
- // GET api/<ValuesController>/5
- [HttpGet("{id}")]
- public string Get(int id)
- {
- return "value";
- }
- // POST api/<ValuesController>
- [HttpPost]
- public void Post([FromBody] string value)
- {
- }
- // PUT api/<ValuesController>/5
- [HttpPut("{id}")]
- public void Put(int id, [FromBody] string value)
- {
- }
- // DELETE api/<ValuesController>/5
- [HttpDelete("{id}")]
- public void Delete(int id)
- {
- }
- }
- }
|