9 overrides of CanExecute
Microsoft.AspNetCore.Mvc.Core (9)
Infrastructure\ActionMethodExecutor.cs (9)
86protected override bool CanExecute(ObjectMethodExecutor executor) 117protected override bool CanExecute(ObjectMethodExecutor executor) 150protected override bool CanExecute(ObjectMethodExecutor executor) 185protected override bool CanExecute(ObjectMethodExecutor executor) => !executor.IsMethodAsync; 212protected override bool CanExecute(ObjectMethodExecutor executor) => executor.MethodReturnType == typeof(Task); 240protected override bool CanExecute(ObjectMethodExecutor executor) 281protected override bool CanExecute(ObjectMethodExecutor executor) 316protected override bool CanExecute(ObjectMethodExecutor executor) 352protected override bool CanExecute(ObjectMethodExecutor executor) => true;
1 reference to CanExecute
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ActionMethodExecutor.cs (1)
47if (Executors[i].CanExecute(executor))