1 write to ActionContext
Microsoft.AspNetCore.Mvc.Abstractions (1)
Abstractions\ActionInvokerProviderContext.cs (1)
19ActionContext = 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)
64if (context.ActionContext.ActionDescriptor is ControllerActionDescriptor) 66var controllerContext = new ControllerContext(context.ActionContext)
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\PageActionInvokerProvider.cs (1)
65var actionContext = context.ActionContext;
Microsoft.AspNetCore.Mvc.RazorPages.Test (3)
Infrastructure\PageActionInvokerProviderTest.cs (3)
141Assert.Same(context.ActionContext.HttpContext, pageContext.HttpContext); 142Assert.Same(context.ActionContext.ModelState, pageContext.ModelState); 143Assert.Same(context.ActionContext.RouteData, pageContext.RouteData);