.NET MyMVC架構執行Action的過程詳解

來源:互聯網
上載者:User
在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架構如何給方法賦值的教程

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.