2 writes to BoundProperties
Microsoft.AspNetCore.Mvc.Core (1)
ApplicationModels\ControllerActionDescriptorBuilder.cs (1)
56actionDescriptor.BoundProperties = controller.ControllerProperties
Microsoft.AspNetCore.Mvc.RazorPages (1)
ApplicationModels\CompiledPageActionDescriptorBuilder.cs (1)
49BoundProperties = boundProperties,
8 references to BoundProperties
Microsoft.AspNetCore.Mvc.ApiExplorer (2)
DefaultApiDescriptionProvider.cs (2)
200if (context.ActionDescriptor.BoundProperties != null) 202foreach (var actionParameter in context.ActionDescriptor.BoundProperties)
Microsoft.AspNetCore.Mvc.Core (4)
Controllers\ControllerBinderDelegateProvider.cs (3)
44var properties = actionDescriptor.BoundProperties switch 47_ => actionDescriptor.BoundProperties.ToArray() 167var properties = actionDescriptor.BoundProperties;
Infrastructure\ControllerActionInvoker.cs (1)
519if (actionDescriptor.BoundProperties.Count == 0 &&
Microsoft.AspNetCore.Mvc.RazorPages (2)
Infrastructure\PageActionInvoker.cs (1)
184if (_actionDescriptor.BoundProperties.Count == 0 && (_handler == null || _handler.Parameters.Count == 0))
Infrastructure\PageBinderFactory.cs (1)
22var properties = actionDescriptor.BoundProperties;