在AjaxHandlerFactory的GetHandler方法中,最後將建立一個ActionHandler,這是一個HttpHandler, 它將在管線的第15個步驟中被調用(引用部落格【用Asp.net寫自己的服務架構】中的順序)。
注意:AjaxHandlerFactory的GetHandler方法是在第10步中調用的,第12步就是在準備Session(非進程內模式), 因此,必須在第12步前決定Session的使用方式。
所有的Action代碼都是在ActionHandler中執行的:
internal class ActionHandler : IHttpHandler{ internal InvokeInfo InvokeInfo; public void ProcessRequest(HttpContext context) { // 調用核心的工具類,執行Action ActionExecutor.ExecuteAction(context, this.InvokeInfo); }
ExecuteAction的實現過程如下:
internal static void ExecuteAction(HttpContext context, InvokeInfo vkInfo){ if( context == null ) throw new ArgumentNullException("context"); if( vkInfo == null ) throw new ArgumentNullException("vkInfo"); // 調用方法 object result = ExecuteActionInternal(context, vkInfo); // 設定OutputCache OutputCacheAttribute outputCache = vkInfo.GetOutputCacheSetting(); if( outputCache != null ) outputCache.SetResponseCache(context); // 處理方法的返回結果 IActionResult executeResult = result as IActionResult; if( executeResult != null ) { executeResult.Ouput(context); } else { if( result != null ) { // 普通類型結果 context.Response.ContentType = "text/plain"; context.Response.Write(result.ToString()); } }}internal static object ExecuteActionInternal(HttpContext context, InvokeInfo info){ // 準備要傳給調用方法的參數 object[] parameters = GetActionCallParameters(context, info.Action); // 調用方法 if( info.Action.HasReturn ) return info.Action.MethodInfo.Invoke(info.Instance, parameters); else { info.Action.MethodInfo.Invoke(info.Instance, parameters); return null; }}
前面我不是沒有說調用SetResponseCache()的時機嘛,這個時機就是在這裡:執行完Action後。
設定過OutputCache後,就是處理傳回值了。
前面那段代碼中,還有一句重要的調用:
// 準備要傳給調用方法的參數object[] parameters = GetActionCallParameters(context, info.Action);
【相關推薦】
1. 精選:“php程式員工具箱”V0.1版本下載
2. ASP免費視頻教程
3. 入門級的.NET MVC 執行個體
4. MyMVC框尋找Action的過程詳解
5. .NET MyMVC架構處理傳回值的教程
6. .NET MyMVC架構如何給方法賦值的教程