Merge pull request #249 from pcc/xgetinputfocus
[mono.git] / mcs / class / System.Web.Mvc3 / Mvc / Async / IAsyncActionInvoker.cs
1 namespace System.Web.Mvc.Async {
2     using System;
3
4     public interface IAsyncActionInvoker : IActionInvoker {
5         IAsyncResult BeginInvokeAction(ControllerContext controllerContext, string actionName, AsyncCallback callback, object state);
6         bool EndInvokeAction(IAsyncResult asyncResult);
7     }
8 }