7 writes to SuppressPathMatching
ApiExplorerWebSite (1)
ApiExplorerInboundOutboundConvention.cs (1)
32action.Selectors[0].AttributeRouteModel.SuppressPathMatching = true;
ApplicationModelWebSite (1)
Controllers\HomeController.cs (1)
45selector.AttributeRouteModel.SuppressPathMatching = true;
Microsoft.AspNetCore.Mvc.Core (2)
ApplicationModels\AttributeRouteModel.cs (2)
54SuppressPathMatching = other.SuppressPathMatching; 129SuppressPathMatching = left.SuppressPathMatching || right.SuppressPathMatching,
Microsoft.AspNetCore.Mvc.Core.Test (3)
ApplicationModels\AttributeRouteModelTests.cs (3)
19SuppressPathMatching = true, 342SuppressPathMatching = leftSuppress, 346SuppressPathMatching = rightSuppress,
7 references to SuppressPathMatching
Microsoft.AspNetCore.Mvc.Core (4)
ApplicationModels\AttributeRouteModel.cs (3)
54SuppressPathMatching = other.SuppressPathMatching; 129SuppressPathMatching = left.SuppressPathMatching || right.SuppressPathMatching,
ApplicationModels\ControllerActionDescriptorBuilder.cs (1)
207SuppressPathMatching = selectorModel.AttributeRouteModel.SuppressPathMatching,
Microsoft.AspNetCore.Mvc.Core.Test (2)
ApplicationModels\AttributeRouteModelTests.cs (2)
329Assert.False(combined.SuppressPathMatching); 351Assert.True(combined.SuppressPathMatching);
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\PageActionDescriptorProvider.cs (1)
100SuppressPathMatching = selector.AttributeRouteModel.SuppressPathMatching,