我创建了一个 DelegatingHandler,它适用于每个请求。我读过一些文章,我可以为特定路线定义处理程序,但我尝试了很多方法都没有成功,我错过了一些我没有找到的东西。
最后一次尝试是:
GlobalConfiguration.Configuration.Routes.MapHttpRoute(
name: "SaveMessage",
routeTemplate: "api/message/{type}",
defaults: new { type = RouteParameter.Optional },
constraints: null,
handler: HttpClientFactory.CreatePipeline(
new HttpControllerDispatcher(GlobalConfiguration.Configuration),
new DelegatingHandler[]{new ValidationHandler()})
);
我的类控制器和方法具有以下属性:
[RoutePrefix("api/message")]
public class MessageController : ApiController
{
[Route("{type}")]
[HttpPost]
public HttpResponseMessage Save(string type, [FromBody] Message message)
{
....
}
}
我的处理程序缺少什么仅适用于api/message/text 之类的请求?
我已经阅读了诸如How to make more MapHttpRoutes for MVC 4 Api和http://www.asp.net/web-api/overview/web-api-routing-and-actions/routing-and-action-selection之类的链接。