码迷,mamicode.com
首页 > Web开发 > 详细

从一个针对ASP.NET MVC框架的Controller.Action的请求处理顺序来说整个请求过程。

时间:2016-01-08 20:25:12      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

    下面引用的所有代码都源自ASP.NET MVC的源码,但是只选取其中的一部分。

    System.Web.Routing.UrlRoutingModule在管道事件中注册PostResolveRequestCache事件。

protected virtual void Init(HttpApplication application) {
    application.PostResolveRequestCache += OnApplicationPostResolveRequestCache;
}

  在这个事件中会调用RouteCollection.GetRouteData方法去获取RoteData,而RouteCollection.GetRouteData方法会按照注册的顺序先后调用在web应用程序中注册的所有Route对象的GetRouteData方法,在调用过程中如果发现有一个匹配的,那么后续的Route对象的GetRouteData方法不会再执行(所以最特殊的Route需要最先注册)。

public RouteData GetRouteData(HttpContextBase httpContext) {
	// Go through all the configured routes and find the first one that returns a match
	using (GetReadLock()) {
		foreach (RouteBase route in this) {
			RouteData routeData = route.GetRouteData(httpContext);
			if (routeData != null) {
				// If we‘re not routing existing files on this route and the file exists, we also stop processing routes
				if (!route.RouteExistingFiles) {
					if (!doneRouteCheck) {
						isRouteToExistingFile = IsRouteToExistingFile(httpContext);
						doneRouteCheck = true;
					}
					if (isRouteToExistingFile) {
						return null;
					}
				}
				return routeData;
			}
		}
	}
	return null;
}

  在管道事件PostResolveRequestCache中获取到RouteData对象之后,会通过该对象的RouteHandler属性去获取一个

 

从一个针对ASP.NET MVC框架的Controller.Action的请求处理顺序来说整个请求过程。

标签:

原文地址:http://www.cnblogs.com/swyy/p/5114248.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!