1.首先建立一個專案
2.選擇Web API
3.建立一個空的控制器
4.控制器名稱為MyApiController
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; namespace WebApplication2.Controllers { public class MyApiController : ApiController {
[HttpGet] public string HellowWord() { return "我的第一個WebApi"; } } }
5.測試方法通過地址:http://localhost:54206/api/MyApi/HellowWord呼叫,注意MyApi不要加Controller