ASP.NET WebForm中使用WebApi
生活随笔
收集整理的這篇文章主要介紹了
ASP.NET WebForm中使用WebApi
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
添加webapi.dll 可現在添加。
在WebForm使用WebApi需要在全局文件里配置路由。
using System.Web.Routing;protected void Application_Start(object sender, EventArgs e){RegisterRoutes(RouteTable.Routes);}public static void RegisterRoutes(RouteCollection routes){//ContactsApi為暴露的類里面為暴露的方法 API要映射的路徑routes.MapServiceRoute<ContactsApi>("API");} ContactsApi類的定義 using System.ServiceModel; using System.ServiceModel.Web; using WebAPI.Resources;namespace WebAPI.APIs {[ServiceContract]public class ContactsApi{//設置為默認方法[WebGet(UriTemplate = "")]public IQueryable<Contact> Get(){var contacts = new List<Contact>(){new Contact {ContactId =1, Name ="1111"},new Contact {ContactId =2, Name ="333"},new Contact {ContactId =3, Name ="Glenn Block"},new Contact {ContactId =4, Name ="Howard Dierking"},new Contact {ContactId =5, Name ="Jeff Handley"},new Contact {ContactId =6, Name ="Yavor Georgiev"}};return contacts.AsQueryable();}} }訪問地址為:http://localhost:9000/API
轉載于:https://www.cnblogs.com/gouyanfeng/p/3173508.html
總結
以上是生活随笔為你收集整理的ASP.NET WebForm中使用WebApi的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 2021最新版谷歌浏览器百度网盘下载
- 下一篇: Mysql日期函数使用大全