1 write to HandlerMethods
Microsoft.AspNetCore.Mvc.RazorPages (1)
ApplicationModels\CompiledPageActionDescriptorBuilder.cs (1)
52
HandlerMethods
= handlerMethods,
15 references to HandlerMethods
Microsoft.AspNetCore.Mvc.RazorPages (15)
Infrastructure\DefaultPageHandlerMethodSelector.cs (1)
66
var handlers = context.ActionDescriptor.
HandlerMethods
;
Infrastructure\PageActionInvoker.cs (4)
206
for (var i = 0; i < _actionDescriptor.
HandlerMethods
.Count; i++)
208
if (object.ReferenceEquals(_handler, _actionDescriptor.
HandlerMethods
[i]))
260
for (var i = 0; i < _actionDescriptor.
HandlerMethods
.Count; i++)
262
if (object.ReferenceEquals(handler, _actionDescriptor.
HandlerMethods
[i]))
Infrastructure\PageActionInvokerCache.cs (10)
131
if (actionDescriptor.
HandlerMethods
== null || actionDescriptor.
HandlerMethods
.Count == 0)
136
var results = new PageHandlerExecutorDelegate[actionDescriptor.
HandlerMethods
.Count];
138
for (var i = 0; i < actionDescriptor.
HandlerMethods
.Count; i++)
140
results[i] = ExecutorFactory.CreateExecutor(actionDescriptor.
HandlerMethods
[i]);
148
if (actionDescriptor.
HandlerMethods
== null || actionDescriptor.
HandlerMethods
.Count == 0)
153
var results = new PageHandlerBinderDelegate[actionDescriptor.
HandlerMethods
.Count];
155
for (var i = 0; i < actionDescriptor.
HandlerMethods
.Count; i++)
162
actionDescriptor.
HandlerMethods
[i]);