aspnetcore/src/Microsoft.AspNet.Mvc/ActionInvokerProviderContex...

22 lines
499 B
C#

using System;
namespace Microsoft.AspNet.Mvc
{
public class ActionInvokerProviderContext
{
public ActionInvokerProviderContext(ActionContext actionContext)
{
if (actionContext == null)
{
throw new ArgumentNullException("actionContext");
}
ActionContext = actionContext;
}
public ActionContext ActionContext { get; private set; }
public IActionInvoker Result { get; set; }
}
}