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