2 instantiations of SlugifyParameterTransformer
Microsoft.AspNetCore.Routing.Tests (2)
DefaultLinkGeneratorProcessTemplateTest.cs (1)
317var endpoint = EndpointFactory.CreateRouteEndpoint("Foo/{bar=MyBar}/{id?}", policies: new { bar = new SlugifyParameterTransformer(), });
Template\TemplateBinderTests.cs (1)
1305parameterPolicies: new (string, IParameterPolicy)[] { ("param", new LengthRouteConstraint(500)), ("param", new SlugifyParameterTransformer()), });
4 references to SlugifyParameterTransformer
Microsoft.AspNetCore.Routing.Tests (4)
DefaultLinkGeneratorTest.cs (2)
179o.ConstraintMap["slugify"] = typeof(SlugifyParameterTransformer); 205o.ConstraintMap["slugify"] = typeof(SlugifyParameterTransformer);
Matching\DfaMatcherBuilderTest.cs (1)
3548["slugify"] = typeof(SlugifyParameterTransformer),
Matching\DfaMatcherTest.cs (1)
34options.ConstraintMap["slugify"] = typeof(SlugifyParameterTransformer);