1 write to ActionContext
Microsoft.AspNetCore.Mvc.Abstractions (1)
Abstractions\ActionInvokerProviderContext.cs (1)
19
ActionContext
= actionContext;
7 references to ActionContext
Microsoft.AspNetCore.Mvc.Abstractions (1)
Abstractions\ActionInvokerProviderContext.cs (1)
28
/// Gets or sets the <see cref="IActionInvoker"/> that will be used to invoke <see cref="
ActionContext
" />
Microsoft.AspNetCore.Mvc.Core (2)
Infrastructure\ControllerActionInvokerProvider.cs (2)
64
if (context.
ActionContext
.ActionDescriptor is ControllerActionDescriptor)
66
var controllerContext = new ControllerContext(context.
ActionContext
)
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\PageActionInvokerProvider.cs (1)
65
var actionContext = context.
ActionContext
;
Microsoft.AspNetCore.Mvc.RazorPages.Test (3)
Infrastructure\PageActionInvokerProviderTest.cs (3)
141
Assert.Same(context.
ActionContext
.HttpContext, pageContext.HttpContext);
142
Assert.Same(context.
ActionContext
.ModelState, pageContext.ModelState);
143
Assert.Same(context.
ActionContext
.RouteData, pageContext.RouteData);