3 instantiations of HandlerParameterDescriptor
Microsoft.AspNetCore.Mvc.RazorPages (1)
ApplicationModels\CompiledPageActionDescriptorBuilder.cs (1)
106parameters[i] = new HandlerParameterDescriptor
Microsoft.AspNetCore.Mvc.RazorPages.Test (2)
Infrastructure\ExecutorFactoryTest.cs (1)
208return parameters.Select(p => new HandlerParameterDescriptor()
Infrastructure\PageBinderFactoryTest.cs (1)
770new HandlerParameterDescriptor
27 references to HandlerParameterDescriptor
Microsoft.AspNetCore.Mvc.IntegrationTests (1)
ParameterBinderExtensions.cs (1)
32else if (parameter is HandlerParameterDescriptor handlerParameterDescriptor)
Microsoft.AspNetCore.Mvc.RazorPages (13)
ApplicationModels\CompiledPageActionDescriptorBuilder.cs (2)
97internal static HandlerParameterDescriptor[] CreateHandlerParameters(PageHandlerModel handlerModel) 100var parameters = new HandlerParameterDescriptor[methodParameters.Count];
Infrastructure\ExecutorFactory.cs (7)
54protected static Expression[] Unpack(Expression arguments, HandlerParameterDescriptor[] parameters) 67protected HandlerMethod(HandlerParameterDescriptor[] parameters) 72public HandlerParameterDescriptor[] Parameters { get; } 81public NonGenericTaskHandlerMethod(HandlerParameterDescriptor[] parameters, MethodInfo method) 111public GenericTaskHandlerMethod(HandlerParameterDescriptor[] parameters, MethodInfo method) 147public VoidHandlerMethod(HandlerParameterDescriptor[] parameters, MethodInfo method) 173public ActionResultHandlerMethod(HandlerParameterDescriptor[] parameters, MethodInfo method)
Infrastructure\HandlerMethodDescriptor.cs (1)
31public IList<HandlerParameterDescriptor> Parameters { get; set; } = default!;
Infrastructure\PageActionInvoker.cs (1)
230var parameter = handler.Parameters[i];
Infrastructure\PageBinderFactory.cs (2)
98var parameter = handler.Parameters[i]; 137var parameter = handler.Parameters[i];
Microsoft.AspNetCore.Mvc.RazorPages.Test (13)
Infrastructure\ExecutorFactoryTest.cs (5)
19Parameters = new HandlerParameterDescriptor[0], 39Parameters = new HandlerParameterDescriptor[0], 81Parameters = new HandlerParameterDescriptor[0], 104Parameters = new HandlerParameterDescriptor[0], 204private static HandlerParameterDescriptor[] CreateParameters(MethodInfo methodInfo)
Infrastructure\PageActionInvokerTest.cs (8)
1461Parameters = new List<HandlerParameterDescriptor>(), 1470Parameters = new List<HandlerParameterDescriptor>(), 1594Parameters = new List<HandlerParameterDescriptor>(), 1600Parameters = new List<HandlerParameterDescriptor>(), 1622Parameters = new List<HandlerParameterDescriptor>(), 1628Parameters = new List<HandlerParameterDescriptor>(), 1650Parameters = new List<HandlerParameterDescriptor>(), 1656Parameters = new List<HandlerParameterDescriptor>(),