2 implementations of ISuppressMatchingMetadata
Microsoft.AspNetCore.Routing (1)
SuppressMatchingMetadata.cs (1)
14
public sealed class SuppressMatchingMetadata :
ISuppressMatchingMetadata
Microsoft.AspNetCore.Routing.Tests (1)
Matching\DataSourceDependentMatcherTest.cs (1)
263
private class EncourageMatchingMetadata :
ISuppressMatchingMetadata
3 references to ISuppressMatchingMetadata
Microsoft.AspNetCore.Mvc.Core.Test (1)
Routing\ActionEndpointFactoryTest.cs (1)
495
var isEndpointSuppressed = endpoint.Metadata.GetMetadata<
ISuppressMatchingMetadata
>()?.SuppressMatching ?? false;
Microsoft.AspNetCore.Routing (2)
Internal\DfaGraphWriter.cs (1)
47
if (endpoints[i] is RouteEndpoint endpoint && (endpoint.Metadata.GetMetadata<
ISuppressMatchingMetadata
>()?.SuppressMatching ?? false) == false)
Matching\DataSourceDependentMatcher.cs (1)
64
if (endpoint.Metadata.GetMetadata<
ISuppressMatchingMetadata
>()?.SuppressMatching != true)