22 lines
499 B
C#
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; }
|
|
}
|
|
}
|