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