随笔分类 -  WebApi

摘要:Media Type = MIME Type指明了entity body中的格式text/htmlimage/pngapplication/json//responseHTTP/1.1 200 OKContent-Length: 95267Content-Type: image/png//reque... 阅读全文
posted @ 2015-08-08 00:31 fannet
摘要:简单类型参数: url读取(string,bool,int...)复杂类型参数:从message body用media-type formatter读取url读取route data(路由解析uri的时候得到)和URI query string强制复杂类型从uri获取public class Geo... 阅读全文
posted @ 2015-08-08 00:20 fannet
摘要:安装:Install-Package Microsoft.AspNet.WebApi.WebHost引用:System.Web.Http.HttpConfigurationExtensions配置:webapi2public static class WebApiConfig{ public ... 阅读全文
posted @ 2015-06-18 23:24 fannet
摘要:[ApiAuthorize]BaseController:ApiControllerWebApiConfigregister() //config.SuppressDefaultHostAuthentication(); //config.Filters.Add(new Hos... 阅读全文
posted @ 2015-05-31 22:00 fannet
摘要:使用方法:1. 到nuget上装一个包:http://www.nuget.org/packages/Microsoft.AspNet.WebApi.Cors/2. 在WebApiConfig.Register方法中加入代码:config.EnableCors();3. 在Controller上加上A... 阅读全文
posted @ 2015-05-31 21:32 fannet