9 types derived from ActionMethodExecutor
Microsoft.AspNetCore.Mvc.Core (9)
Infrastructure\ActionMethodExecutor.cs (9)
59private sealed class FilterActionMethodExecutor : ActionMethodExecutor 94private sealed class VoidResultExecutor : ActionMethodExecutor 123private sealed class SyncActionResultExecutor : ActionMethodExecutor 156private sealed class SyncObjectResultExecutor : ActionMethodExecutor 189private sealed class TaskResultExecutor : ActionMethodExecutor 217private sealed class AwaitableResultExecutor : ActionMethodExecutor 248private sealed class TaskOfIActionResultExecutor : ActionMethodExecutor 287private sealed class TaskOfActionResultExecutor : ActionMethodExecutor 325private sealed class AwaitableObjectResultExecutor : ActionMethodExecutor
14 references to ActionMethodExecutor
Microsoft.AspNetCore.Mvc.Core (14)
Infrastructure\ActionMethodExecutor.cs (4)
15private static readonly ActionMethodExecutor[] Executors = new ActionMethodExecutor[] 43public static ActionMethodExecutor GetExecutor(ObjectMethodExecutor executor) 56public static ActionMethodExecutor GetFilterExecutor(ControllerActionDescriptor actionDescriptor) =>
Infrastructure\ControllerActionInvoker.cs (2)
389var actionMethodExecutor = _cacheEntry.ActionMethodExecutor; 415var actionMethodExecutor = invoker._cacheEntry.ActionMethodExecutor;
Infrastructure\ControllerActionInvokerCache.cs (4)
71var actionMethodExecutor = ActionMethodExecutor.GetExecutor(objectMethodExecutor); 72var filterExecutor = actionDescriptor.FilterDelegate is not null 73? ActionMethodExecutor.GetFilterExecutor(actionDescriptor)
Infrastructure\ControllerActionInvokerCacheEntry.cs (4)
18ActionMethodExecutor actionMethodExecutor, 19ActionMethodExecutor innerActionMethodExecutor) 41internal ActionMethodExecutor ActionMethodExecutor { get; } 44internal ActionMethodExecutor InnerActionMethodExecutor { get; }