├── .appveyor.yml ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .vsts-pipelines └── builds │ ├── ci-internal.yml │ └── ci-public.yml ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.txt ├── NuGet.config ├── NuGetPackageVerifier.json ├── README.md ├── Routing.sln ├── Settings.StyleCop ├── THIRD-PARTY-NOTICES ├── benchmarkapps └── Benchmarks │ ├── Benchmarks.csproj │ ├── Program.cs │ ├── StartupUsingEndpointRouting.cs │ ├── StartupUsingRouter.cs │ └── benchmarks.json ├── benchmarks └── Microsoft.AspNetCore.Routing.Performance │ ├── EndpointMetadataCollectionBenchmark.cs │ ├── EndpointRoutingBenchmarkBase.cs │ ├── LinkGeneration │ ├── LinkGenerationGithubBenchmark.cs │ ├── LinkGenerationGithubBenchmark.generated.cs │ ├── SingleRouteRouteValuesAddressSchemeBenchmark.cs │ ├── SingleRouteWithConstraintsBenchmark.cs │ ├── SingleRouteWithNoParametersBenchmark.cs │ └── SingleRouteWithParametersBenchmark.cs │ ├── Matching │ ├── FastPathTokenizerBenchmarkBase.cs │ ├── FastPathTokenizerEmptyBenchmark.cs │ ├── FastPathTokenizerLargeBenchmark.cs │ ├── FastPathTokenizerPlaintextBenchmark.cs │ ├── FastPathTokenizerSmallBenchmark.cs │ ├── JumpTableMultipleEntryBenchmark.cs │ ├── JumpTableSingleEntryBenchmark.cs │ ├── JumpTableZeroEntryBenchmark.cs │ ├── MatcherAzureBenchmark.cs │ ├── MatcherAzureBenchmarkBase.generated.cs │ ├── MatcherBuilderAzureBenchmark.cs │ ├── MatcherBuilderGithubBenchmark.cs │ ├── MatcherBuilderMultipleEntryBenchmark.cs │ ├── MatcherGithubBenchmark.cs │ ├── MatcherGithubBenchmarkBase.generated.cs │ ├── MatcherSingleEntryBenchmark.cs │ ├── RouteEndpointAzureBenchmark.cs │ ├── TrivialMatcher.cs │ └── TrivialMatcherBuilder.cs │ ├── Microsoft.AspNetCore.Routing.Performance.csproj │ ├── Properties │ └── AssemblyInfo.cs │ └── readme.md ├── korebuild-lock.txt ├── korebuild.json ├── run.cmd ├── run.ps1 ├── run.sh ├── samples └── RoutingSandbox │ ├── AuthorizationMiddleware │ ├── AuthorizationAppBuilderExtensions.cs │ ├── AuthorizationMetadata.cs │ ├── AuthorizationMiddleware.cs │ └── EndpointConventionBuilderExtensions .cs │ ├── HelloExtension │ ├── EndpointRouteBuilderExtensions.cs │ ├── HelloAppBuilderExtensions.cs │ ├── HelloMiddleware.cs │ └── HelloOptions.cs │ ├── Program.cs │ ├── RoutingSandbox.csproj │ ├── UseEndpointRoutingStartup.cs │ ├── UseRouterStartup.cs │ └── wwwroot │ ├── full.render.js │ ├── graph-ui.html │ └── viz.js ├── shared └── Microsoft.AspNetCore.Routing.DecisionTree.Sources │ ├── DecisionCriterion.cs │ ├── DecisionCriterionValue.cs │ ├── DecisionCriterionValueEqualityComparer.cs │ ├── DecisionTreeBuilder.cs │ ├── DecisionTreeNode.cs │ ├── IClassifier.cs │ └── ItemDescriptor.cs ├── src ├── Directory.Build.props ├── Microsoft.AspNetCore.Routing.Abstractions │ ├── IOutboundParameterTransformer.cs │ ├── IParameterPolicy.cs │ ├── IRouteConstraint.cs │ ├── IRouteHandler.cs │ ├── IRouter.cs │ ├── IRoutingFeature.cs │ ├── LinkGenerator.cs │ ├── LinkOptions.cs │ ├── Microsoft.AspNetCore.Routing.Abstractions.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RouteContext.cs │ ├── RouteData.cs │ ├── RouteDirection.cs │ ├── RoutingHttpContextExtensions.cs │ ├── VirtualPathContext.cs │ ├── VirtualPathData.cs │ └── baseline.netcore.json └── Microsoft.AspNetCore.Routing │ ├── Builder │ ├── EndpointRouteBuilderExtensions.cs │ ├── EndpointRoutingApplicationBuilderExtensions.cs │ └── RoutingBuilderExtensions.cs │ ├── CompositeEndpointDataSource.cs │ ├── ConfigureRouteOptions.cs │ ├── Constraints │ ├── AlphaRouteConstraint.cs │ ├── BoolRouteConstraint.cs │ ├── CompositeRouteConstraint.cs │ ├── DateTimeRouteConstraint.cs │ ├── DecimalRouteConstraint.cs │ ├── DoubleRouteConstraint.cs │ ├── FloatRouteConstraint.cs │ ├── GuidRouteConstraint.cs │ ├── HttpMethodRouteConstraint.cs │ ├── IntRouteConstraint.cs │ ├── LengthRouteConstraint.cs │ ├── LongRouteConstraint.cs │ ├── MaxLengthRouteConstraint.cs │ ├── MaxRouteConstraint.cs │ ├── MinLengthRouteConstraint.cs │ ├── MinRouteConstraint.cs │ ├── NullRouteConstraint.cs │ ├── OptionalRouteConstraint.cs │ ├── RangeRouteConstraint.cs │ ├── RegexInlineRouteConstraint.cs │ ├── RegexRouteConstraint.cs │ ├── RequiredRouteConstraint.cs │ └── StringRouteConstraint.cs │ ├── DataSourceDependentCache.cs │ ├── DataTokensMetadata.cs │ ├── DefaultEndpointDataSource.cs │ ├── DefaultEndpointRouteBuilder.cs │ ├── DefaultInlineConstraintResolver.cs │ ├── DefaultLinkGenerator.cs │ ├── DefaultParameterPolicyFactory.cs │ ├── DependencyInjection │ └── RoutingServiceCollectionExtensions.cs │ ├── EndpointDataSource.cs │ ├── EndpointMiddleware.cs │ ├── EndpointModel.cs │ ├── EndpointNameAddressScheme.cs │ ├── EndpointNameMetadata.cs │ ├── EndpointRoutingMiddleware.cs │ ├── EndpointSelectorContext.cs │ ├── HttpMethodMetadata.cs │ ├── IDataTokenMetadata.cs │ ├── IEndpointAddressScheme.cs │ ├── IEndpointModelConvention.cs │ ├── IEndpointNameMetadata.cs │ ├── IEndpointRouteBuilder.cs │ ├── IHttpMethodMetadata.cs │ ├── IInlineConstraintResolver.cs │ ├── INamedRouter.cs │ ├── IRouteBuilder.cs │ ├── IRouteCollection.cs │ ├── IRouteValuesAddressMetadata.cs │ ├── ISuppressLinkGenerationMetadata.cs │ ├── ISuppressMatchingMetadata.cs │ ├── InlineRouteParameterParser.cs │ ├── Internal │ ├── ArrayBuilder.cs │ ├── BufferValue.cs │ ├── DfaGraphWriter.cs │ ├── LinkGenerationDecisionTree.cs │ ├── NullRouter.cs │ ├── OutboundMatchResult.cs │ ├── ParameterPolicyActivator.cs │ ├── PathTokenizer.cs │ ├── RoutingMarkerService.cs │ ├── SegmentState.cs │ ├── UriBuilderContextPooledObjectPolicy.cs │ └── UriBuildingContext.cs │ ├── LinkGeneratorEndpointNameAddressExtensions.cs │ ├── LinkGeneratorRouteValuesAddressExtensions.cs │ ├── Logging │ ├── RouteConstraintMatcherExtensions.cs │ ├── RouterMiddlewareLoggerExtensions.cs │ └── TreeRouterLoggerExtensions.cs │ ├── MapRouteRouteBuilderExtensions.cs │ ├── Matching │ ├── AmbiguousMatchException.cs │ ├── Ascii.cs │ ├── Candidate.cs │ ├── CandidateSet.cs │ ├── CandidateState.cs │ ├── DataSourceDependentMatcher.cs │ ├── DefaultEndpointSelector.cs │ ├── DfaMatcher.cs │ ├── DfaMatcherBuilder.cs │ ├── DfaMatcherFactory.cs │ ├── DfaNode.cs │ ├── DfaState.cs │ ├── DictionaryJumpTable.cs │ ├── EndpointComparer.cs │ ├── EndpointMetadataComparer.cs │ ├── EndpointSelector.cs │ ├── FastPathTokenizer.cs │ ├── HttpMethodMatcherPolicy.cs │ ├── IEndpointComparerPolicy.cs │ ├── IEndpointSelectorPolicy.cs │ ├── ILEmitTrieFactory.cs │ ├── ILEmitTrieJumpTable.cs │ ├── INodeBuilderPolicy.cs │ ├── JumpTable.cs │ ├── JumpTableBuilder.cs │ ├── LinearSearchJumpTable.cs │ ├── Matcher.cs │ ├── MatcherBuilder.cs │ ├── MatcherFactory.cs │ ├── MatcherPolicy.cs │ ├── PathSegment.cs │ ├── PolicyJumpTable.cs │ ├── PolicyJumpTableEdge.cs │ ├── PolicyNodeEdge.cs │ ├── SingleEntryAsciiJumpTable.cs │ ├── SingleEntryJumpTable.cs │ └── ZeroEntryJumpTable.cs │ ├── Microsoft.AspNetCore.Routing.csproj │ ├── ModelEndpointDataSource.cs │ ├── ParameterPolicyFactory.cs │ ├── Patterns │ ├── DefaultRoutePatternTransformer.cs │ ├── RouteParameterParser.cs │ ├── RoutePattern.cs │ ├── RoutePatternException.cs │ ├── RoutePatternFactory.cs │ ├── RoutePatternLiteralPart.cs │ ├── RoutePatternMatcher.cs │ ├── RoutePatternParameterKind.cs │ ├── RoutePatternParameterPart.cs │ ├── RoutePatternParameterPolicyReference.cs │ ├── RoutePatternParser.cs │ ├── RoutePatternPart.cs │ ├── RoutePatternPartKind.cs │ ├── RoutePatternPathSegment.cs │ ├── RoutePatternSeparatorPart.cs │ └── RoutePatternTransformer.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── Resources.Designer.cs │ ├── RequestDelegateRouteBuilderExtensions.cs │ ├── Resources.resx │ ├── Route.cs │ ├── RouteBase.cs │ ├── RouteBuilder.cs │ ├── RouteCollection.cs │ ├── RouteConstraintBuilder.cs │ ├── RouteConstraintMatcher.cs │ ├── RouteCreationException.cs │ ├── RouteEndpoint.cs │ ├── RouteEndpointModel.cs │ ├── RouteHandler.cs │ ├── RouteOptions.cs │ ├── RouteValueEqualityComparer.cs │ ├── RouteValuesAddress.cs │ ├── RouteValuesAddressMetadata.cs │ ├── RouteValuesAddressScheme.cs │ ├── RouterMiddleware.cs │ ├── RoutingFeature.cs │ ├── SuppressLinkGenerationMetadata.cs │ ├── SuppressMatchingMetadata.cs │ ├── Template │ ├── InlineConstraint.cs │ ├── RoutePrecedence.cs │ ├── RouteTemplate.cs │ ├── TemplateBinder.cs │ ├── TemplateMatcher.cs │ ├── TemplateParser.cs │ ├── TemplatePart.cs │ ├── TemplateSegment.cs │ └── TemplateValuesResult.cs │ ├── Tree │ ├── InboundMatch.cs │ ├── InboundRouteEntry.cs │ ├── OutboundMatch.cs │ ├── OutboundRouteEntry.cs │ ├── TreeEnumerator.cs │ ├── TreeRouteBuilder.cs │ ├── TreeRouter.cs │ ├── UrlMatchingNode.cs │ └── UrlMatchingTree.cs │ └── baseline.netcore.json ├── test ├── Directory.Build.props ├── Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests │ ├── Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests.csproj │ ├── RouteDataTest.cs │ └── VirtualPathDataTests.cs ├── Microsoft.AspNetCore.Routing.DecisionTree.Sources.Tests │ ├── DecisionTreeBuilderTest.cs │ └── Microsoft.AspNetCore.Routing.DecisionTree.Sources.Tests.csproj ├── Microsoft.AspNetCore.Routing.FunctionalTests │ ├── Benchmarks │ │ ├── EndpointRoutingBenchmarkTest.cs │ │ └── RouterBenchmarkTest.cs │ ├── EndpointRoutingSampleTest.cs │ ├── Microsoft.AspNetCore.Routing.FunctionalTests.csproj │ ├── RouterSampleTest.cs │ ├── RoutingTestFixture.cs │ └── WebHostBuilderExtensionsTest.cs ├── Microsoft.AspNetCore.Routing.Tests │ ├── Builder │ │ ├── EndpointRoutingApplicationBuilderExtensionsTest.cs │ │ ├── MapEndpointEndpointDataSourceBuilderExtensionsTest.cs │ │ └── RoutingBuilderExtensionsTest.cs │ ├── CompositeEndpointDataSourceTest.cs │ ├── ConstraintMatcherTest.cs │ ├── Constraints │ │ ├── AlphaRouteConstraintTests.cs │ │ ├── BoolRouteConstraintTests.cs │ │ ├── CompositeRouteConstraintTests.cs │ │ ├── ConstraintsTestHelper.cs │ │ ├── DateTimeRouteConstraintTests.cs │ │ ├── DecimalRouteConstraintTests.cs │ │ ├── DoubleRouteConstraintTests.cs │ │ ├── FloatRouteConstraintTests.cs │ │ ├── GuidRouteConstraintTests.cs │ │ ├── HttpMethodRouteConstraintTests.cs │ │ ├── IntRouteConstraintsTests.cs │ │ ├── LengthRouteConstraintTests.cs │ │ ├── LongRouteConstraintTests.cs │ │ ├── MaxLengthRouteConstraintTests.cs │ │ ├── MaxRouteConstraintTests.cs │ │ ├── MinLengthRouteConstraintTests.cs │ │ ├── MinRouteConstraintTests.cs │ │ ├── RangeRouteConstraintTests.cs │ │ ├── RegexInlineRouteConstraintTests.cs │ │ ├── RegexRouteConstraintTests.cs │ │ ├── RequiredRouteConstraintTests.cs │ │ └── StringRouteConstraintTest.cs │ ├── DataSourceDependentCacheTest.cs │ ├── DefaultEndpointDataSourceTests.cs │ ├── DefaultInlineConstraintResolverTest.cs │ ├── DefaultLinkGeneratorProcessTemplateTest.cs │ ├── DefaultLinkGeneratorTest.cs │ ├── DefaultParameterPolicyFactoryTest.cs │ ├── EndpointFactory.cs │ ├── EndpointMiddlewareTest.cs │ ├── EndpointNameAddressSchemeTest.cs │ ├── EndpointRoutingMiddlewareTest.cs │ ├── EndpointSelectorContextTest.cs │ ├── InlineRouteParameterParserTests.cs │ ├── Internal │ │ ├── DfaGraphWriterTest.cs │ │ ├── LinkGenerationDecisionTreeTest.cs │ │ ├── PathTokenizerTest.cs │ │ └── UriBuildingContextTest.cs │ ├── LinkGeneratorEndpointNameExtensionsTest.cs │ ├── LinkGeneratorRouteValuesAddressExtensionsTest.cs │ ├── LinkGeneratorTestBase.cs │ ├── Logging │ │ └── WriteContext.cs │ ├── Matching │ │ ├── AsciiTest.cs │ │ ├── BarebonesMatcher.cs │ │ ├── BarebonesMatcherBuilder.cs │ │ ├── BarebonesMatcherConformanceTest.cs │ │ ├── CandidateSetTest.cs │ │ ├── DataSourceDependentMatcherTest.cs │ │ ├── DefaultEndpointSelectorTest.cs │ │ ├── DfaMatcherBuilderTest.cs │ │ ├── DfaMatcherConformanceTest.cs │ │ ├── DfaMatcherTest.cs │ │ ├── DictionaryJumpTableTest.cs │ │ ├── EndpointMetadataComparerTest.cs │ │ ├── FastPathTokenizerTest.cs │ │ ├── FullFeaturedMatcherConformanceTest.cs │ │ ├── HttpMethodMatcherPolicyIntegrationTest.cs │ │ ├── HttpMethodMatcherPolicyTest.cs │ │ ├── ILEmitTrieFactoryTest.cs │ │ ├── ILEmitTrieJumpTableTest.cs │ │ ├── LinearSearchJumpTableTest.cs │ │ ├── MatcherAssert.cs │ │ ├── MatcherConformanceTest.MultipleEndpoint.cs │ │ ├── MatcherConformanceTest.SingleEndpoint.cs │ │ ├── MatcherConformanceTest.cs │ │ ├── MultipleEntryJumpTableTest.cs │ │ ├── NonVectorizedILEmitTrieJumpTableTest.cs │ │ ├── RouteEndpointComparerTest.cs │ │ ├── RouteMatcher.cs │ │ ├── RouteMatcherBuilder.cs │ │ ├── RouteMatcherConformanceTest.cs │ │ ├── SingleEntryAsciiJumpTableTest.cs │ │ ├── SingleEntryJumpTableTest.cs │ │ ├── SingleEntryJumpTableTestBase.cs │ │ ├── TreeRouterMatcher.cs │ │ ├── TreeRouterMatcherBuilder.cs │ │ ├── TreeRouterMatcherConformanceTest.cs │ │ ├── VectorizedILEmitTrieJumpTableTest.cs │ │ └── ZeroEntryJumpTableTest.cs │ ├── Microsoft.AspNetCore.Routing.Tests.csproj │ ├── Patterns │ │ ├── DefaultRoutePatternTransformerTest.cs │ │ ├── InlineRouteParameterParserTest.cs │ │ ├── RoutePatternFactoryTest.cs │ │ ├── RoutePatternMatcherTest.cs │ │ └── RoutePatternParserTest.cs │ ├── RequestDelegateRouteBuilderExtensionsTest.cs │ ├── RouteBuilderTest.cs │ ├── RouteCollectionTest.cs │ ├── RouteConstraintBuilderTest.cs │ ├── RouteEndpointModelTest.cs │ ├── RouteOptionsTests.cs │ ├── RouteTest.cs │ ├── RouteValueEqualityComparerTest.cs │ ├── RouteValuesAddressMetadataTests.cs │ ├── RouteValuesAddressSchemeTest.cs │ ├── RouterMiddlewareTest.cs │ ├── Template │ │ ├── RoutePatternPrecedenceTests.cs │ │ ├── RoutePrecedenceTestsBase.cs │ │ ├── RouteTemplatePrecedenceTests.cs │ │ ├── TemplateBinderTests.cs │ │ ├── TemplateMatcherTests.cs │ │ ├── TemplateParserTests.cs │ │ └── TemplateSegmentTest.cs │ ├── TemplateParserDefaultValuesTests.cs │ ├── TestConstants.cs │ ├── TestObjects │ │ ├── CapturingConstraint.cs │ │ ├── DynamicEndpointDataSource.cs │ │ ├── SlugifyParameterTransformer.cs │ │ ├── TestMatcher.cs │ │ ├── TestMatcherFactory.cs │ │ └── TestServiceProvider.cs │ └── Tree │ │ ├── TreeRouteBuilderTest.cs │ │ └── TreeRouterTest.cs └── WebSites │ ├── Directory.Build.props │ └── RoutingWebSite │ ├── EndsWithStringRouteConstraint.cs │ ├── HelloExtension │ ├── EndpointRouteBuilderExtensions.cs │ ├── HelloAppBuilderExtensions.cs │ ├── HelloMiddleware.cs │ └── HelloOptions.cs │ ├── Program.cs │ ├── RoutingWebSite.csproj │ ├── UseEndpointRoutingStartup.cs │ └── UseRouterStartup.cs ├── tools └── Swaggatherer │ ├── Program.cs │ ├── README.md │ ├── RouteEntry.cs │ ├── Swaggatherer.csproj │ ├── SwaggathererApplication.cs │ └── Template.cs └── version.props /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vsts-pipelines/builds/ci-internal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/.vsts-pipelines/builds/ci-internal.yml -------------------------------------------------------------------------------- /.vsts-pipelines/builds/ci-public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/.vsts-pipelines/builds/ci-public.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/NuGet.config -------------------------------------------------------------------------------- /NuGetPackageVerifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/NuGetPackageVerifier.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/README.md -------------------------------------------------------------------------------- /Routing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/Routing.sln -------------------------------------------------------------------------------- /Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/Settings.StyleCop -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/THIRD-PARTY-NOTICES -------------------------------------------------------------------------------- /benchmarkapps/Benchmarks/Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarkapps/Benchmarks/Benchmarks.csproj -------------------------------------------------------------------------------- /benchmarkapps/Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarkapps/Benchmarks/Program.cs -------------------------------------------------------------------------------- /benchmarkapps/Benchmarks/StartupUsingEndpointRouting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarkapps/Benchmarks/StartupUsingEndpointRouting.cs -------------------------------------------------------------------------------- /benchmarkapps/Benchmarks/StartupUsingRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarkapps/Benchmarks/StartupUsingRouter.cs -------------------------------------------------------------------------------- /benchmarkapps/Benchmarks/benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarkapps/Benchmarks/benchmarks.json -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/EndpointMetadataCollectionBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/EndpointMetadataCollectionBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/EndpointRoutingBenchmarkBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/EndpointRoutingBenchmarkBase.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/LinkGeneration/LinkGenerationGithubBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/LinkGeneration/LinkGenerationGithubBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/LinkGeneration/LinkGenerationGithubBenchmark.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/LinkGeneration/LinkGenerationGithubBenchmark.generated.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/LinkGeneration/SingleRouteRouteValuesAddressSchemeBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/LinkGeneration/SingleRouteRouteValuesAddressSchemeBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/LinkGeneration/SingleRouteWithConstraintsBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/LinkGeneration/SingleRouteWithConstraintsBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/LinkGeneration/SingleRouteWithNoParametersBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/LinkGeneration/SingleRouteWithNoParametersBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/LinkGeneration/SingleRouteWithParametersBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/LinkGeneration/SingleRouteWithParametersBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/FastPathTokenizerBenchmarkBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/FastPathTokenizerBenchmarkBase.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/FastPathTokenizerEmptyBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/FastPathTokenizerEmptyBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/FastPathTokenizerLargeBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/FastPathTokenizerLargeBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/FastPathTokenizerPlaintextBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/FastPathTokenizerPlaintextBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/FastPathTokenizerSmallBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/FastPathTokenizerSmallBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/JumpTableMultipleEntryBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/JumpTableMultipleEntryBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/JumpTableSingleEntryBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/JumpTableSingleEntryBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/JumpTableZeroEntryBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/JumpTableZeroEntryBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherAzureBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherAzureBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherAzureBenchmarkBase.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherAzureBenchmarkBase.generated.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherBuilderAzureBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherBuilderAzureBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherBuilderGithubBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherBuilderGithubBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherBuilderMultipleEntryBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherBuilderMultipleEntryBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherGithubBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherGithubBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherGithubBenchmarkBase.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherGithubBenchmarkBase.generated.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherSingleEntryBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/MatcherSingleEntryBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/RouteEndpointAzureBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/RouteEndpointAzureBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/TrivialMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/TrivialMatcher.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/TrivialMatcherBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Matching/TrivialMatcherBuilder.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Microsoft.AspNetCore.Routing.Performance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Microsoft.AspNetCore.Routing.Performance.csproj -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Routing.Performance/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/benchmarks/Microsoft.AspNetCore.Routing.Performance/readme.md -------------------------------------------------------------------------------- /korebuild-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/korebuild-lock.txt -------------------------------------------------------------------------------- /korebuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/korebuild.json -------------------------------------------------------------------------------- /run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/run.cmd -------------------------------------------------------------------------------- /run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/run.ps1 -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/run.sh -------------------------------------------------------------------------------- /samples/RoutingSandbox/AuthorizationMiddleware/AuthorizationAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/AuthorizationMiddleware/AuthorizationAppBuilderExtensions.cs -------------------------------------------------------------------------------- /samples/RoutingSandbox/AuthorizationMiddleware/AuthorizationMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/AuthorizationMiddleware/AuthorizationMetadata.cs -------------------------------------------------------------------------------- /samples/RoutingSandbox/AuthorizationMiddleware/AuthorizationMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/AuthorizationMiddleware/AuthorizationMiddleware.cs -------------------------------------------------------------------------------- /samples/RoutingSandbox/AuthorizationMiddleware/EndpointConventionBuilderExtensions .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/AuthorizationMiddleware/EndpointConventionBuilderExtensions .cs -------------------------------------------------------------------------------- /samples/RoutingSandbox/HelloExtension/EndpointRouteBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/HelloExtension/EndpointRouteBuilderExtensions.cs -------------------------------------------------------------------------------- /samples/RoutingSandbox/HelloExtension/HelloAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/HelloExtension/HelloAppBuilderExtensions.cs -------------------------------------------------------------------------------- /samples/RoutingSandbox/HelloExtension/HelloMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/HelloExtension/HelloMiddleware.cs -------------------------------------------------------------------------------- /samples/RoutingSandbox/HelloExtension/HelloOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/HelloExtension/HelloOptions.cs -------------------------------------------------------------------------------- /samples/RoutingSandbox/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/Program.cs -------------------------------------------------------------------------------- /samples/RoutingSandbox/RoutingSandbox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/RoutingSandbox.csproj -------------------------------------------------------------------------------- /samples/RoutingSandbox/UseEndpointRoutingStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/UseEndpointRoutingStartup.cs -------------------------------------------------------------------------------- /samples/RoutingSandbox/UseRouterStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/UseRouterStartup.cs -------------------------------------------------------------------------------- /samples/RoutingSandbox/wwwroot/full.render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/wwwroot/full.render.js -------------------------------------------------------------------------------- /samples/RoutingSandbox/wwwroot/graph-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/wwwroot/graph-ui.html -------------------------------------------------------------------------------- /samples/RoutingSandbox/wwwroot/viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/samples/RoutingSandbox/wwwroot/viz.js -------------------------------------------------------------------------------- /shared/Microsoft.AspNetCore.Routing.DecisionTree.Sources/DecisionCriterion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/shared/Microsoft.AspNetCore.Routing.DecisionTree.Sources/DecisionCriterion.cs -------------------------------------------------------------------------------- /shared/Microsoft.AspNetCore.Routing.DecisionTree.Sources/DecisionCriterionValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/shared/Microsoft.AspNetCore.Routing.DecisionTree.Sources/DecisionCriterionValue.cs -------------------------------------------------------------------------------- /shared/Microsoft.AspNetCore.Routing.DecisionTree.Sources/DecisionCriterionValueEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/shared/Microsoft.AspNetCore.Routing.DecisionTree.Sources/DecisionCriterionValueEqualityComparer.cs -------------------------------------------------------------------------------- /shared/Microsoft.AspNetCore.Routing.DecisionTree.Sources/DecisionTreeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/shared/Microsoft.AspNetCore.Routing.DecisionTree.Sources/DecisionTreeBuilder.cs -------------------------------------------------------------------------------- /shared/Microsoft.AspNetCore.Routing.DecisionTree.Sources/DecisionTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/shared/Microsoft.AspNetCore.Routing.DecisionTree.Sources/DecisionTreeNode.cs -------------------------------------------------------------------------------- /shared/Microsoft.AspNetCore.Routing.DecisionTree.Sources/IClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/shared/Microsoft.AspNetCore.Routing.DecisionTree.Sources/IClassifier.cs -------------------------------------------------------------------------------- /shared/Microsoft.AspNetCore.Routing.DecisionTree.Sources/ItemDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/shared/Microsoft.AspNetCore.Routing.DecisionTree.Sources/ItemDescriptor.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/IOutboundParameterTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/IOutboundParameterTransformer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/IParameterPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/IParameterPolicy.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/IRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/IRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/IRouteHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/IRouteHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/IRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/IRouter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/IRoutingFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/IRoutingFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/LinkGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/LinkGenerator.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/LinkOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/LinkOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/Microsoft.AspNetCore.Routing.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/Microsoft.AspNetCore.Routing.Abstractions.csproj -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/RouteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/RouteContext.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/RouteData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/RouteData.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/RouteDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/RouteDirection.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/RoutingHttpContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/RoutingHttpContextExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/VirtualPathContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/VirtualPathContext.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/VirtualPathData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/VirtualPathData.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing.Abstractions/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing.Abstractions/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Builder/EndpointRouteBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Builder/EndpointRouteBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Builder/EndpointRoutingApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Builder/EndpointRoutingApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Builder/RoutingBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Builder/RoutingBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/CompositeEndpointDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/CompositeEndpointDataSource.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/ConfigureRouteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/ConfigureRouteOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/AlphaRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/AlphaRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/BoolRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/BoolRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/CompositeRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/CompositeRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/DateTimeRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/DateTimeRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/DecimalRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/DecimalRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/DoubleRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/DoubleRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/FloatRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/FloatRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/GuidRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/GuidRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/HttpMethodRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/HttpMethodRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/IntRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/IntRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/LengthRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/LengthRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/LongRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/LongRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/MaxLengthRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/MaxLengthRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/MaxRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/MaxRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/MinLengthRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/MinLengthRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/MinRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/MinRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/NullRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/NullRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/OptionalRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/OptionalRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/RangeRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/RangeRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/RegexInlineRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/RegexInlineRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/RegexRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/RegexRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/RequiredRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/RequiredRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Constraints/StringRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Constraints/StringRouteConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/DataSourceDependentCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/DataSourceDependentCache.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/DataTokensMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/DataTokensMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/DefaultEndpointDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/DefaultEndpointDataSource.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/DefaultEndpointRouteBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/DefaultEndpointRouteBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/DefaultInlineConstraintResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/DefaultInlineConstraintResolver.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/DefaultLinkGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/DefaultLinkGenerator.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/DefaultParameterPolicyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/DefaultParameterPolicyFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/DependencyInjection/RoutingServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/DependencyInjection/RoutingServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/EndpointDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/EndpointDataSource.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/EndpointMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/EndpointMiddleware.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/EndpointModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/EndpointModel.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/EndpointNameAddressScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/EndpointNameAddressScheme.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/EndpointNameMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/EndpointNameMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/EndpointRoutingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/EndpointRoutingMiddleware.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/EndpointSelectorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/EndpointSelectorContext.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/HttpMethodMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/HttpMethodMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/IDataTokenMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/IDataTokenMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/IEndpointAddressScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/IEndpointAddressScheme.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/IEndpointModelConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/IEndpointModelConvention.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/IEndpointNameMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/IEndpointNameMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/IEndpointRouteBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/IEndpointRouteBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/IHttpMethodMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/IHttpMethodMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/IInlineConstraintResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/IInlineConstraintResolver.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/INamedRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/INamedRouter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/IRouteBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/IRouteBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/IRouteCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/IRouteCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/IRouteValuesAddressMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/IRouteValuesAddressMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/ISuppressLinkGenerationMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/ISuppressLinkGenerationMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/ISuppressMatchingMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/ISuppressMatchingMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/InlineRouteParameterParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/InlineRouteParameterParser.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Internal/ArrayBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Internal/ArrayBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Internal/BufferValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Internal/BufferValue.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Internal/DfaGraphWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Internal/DfaGraphWriter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Internal/LinkGenerationDecisionTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Internal/LinkGenerationDecisionTree.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Internal/NullRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Internal/NullRouter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Internal/OutboundMatchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Internal/OutboundMatchResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Internal/ParameterPolicyActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Internal/ParameterPolicyActivator.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Internal/PathTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Internal/PathTokenizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Internal/RoutingMarkerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Internal/RoutingMarkerService.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Internal/SegmentState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Internal/SegmentState.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Internal/UriBuilderContextPooledObjectPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Internal/UriBuilderContextPooledObjectPolicy.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Internal/UriBuildingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Internal/UriBuildingContext.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/LinkGeneratorEndpointNameAddressExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/LinkGeneratorEndpointNameAddressExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/LinkGeneratorRouteValuesAddressExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/LinkGeneratorRouteValuesAddressExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Logging/RouteConstraintMatcherExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Logging/RouteConstraintMatcherExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Logging/RouterMiddlewareLoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Logging/RouterMiddlewareLoggerExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Logging/TreeRouterLoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Logging/TreeRouterLoggerExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/MapRouteRouteBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/MapRouteRouteBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/AmbiguousMatchException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/AmbiguousMatchException.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/Ascii.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/Ascii.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/Candidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/Candidate.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/CandidateSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/CandidateSet.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/CandidateState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/CandidateState.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/DataSourceDependentMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/DataSourceDependentMatcher.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/DefaultEndpointSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/DefaultEndpointSelector.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/DfaMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/DfaMatcher.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/DfaMatcherBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/DfaMatcherBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/DfaMatcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/DfaMatcherFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/DfaNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/DfaNode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/DfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/DfaState.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/DictionaryJumpTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/DictionaryJumpTable.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/EndpointComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/EndpointComparer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/EndpointMetadataComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/EndpointMetadataComparer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/EndpointSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/EndpointSelector.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/FastPathTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/FastPathTokenizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/HttpMethodMatcherPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/HttpMethodMatcherPolicy.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/IEndpointComparerPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/IEndpointComparerPolicy.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/IEndpointSelectorPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/IEndpointSelectorPolicy.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/ILEmitTrieFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/ILEmitTrieFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/ILEmitTrieJumpTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/ILEmitTrieJumpTable.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/INodeBuilderPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/INodeBuilderPolicy.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/JumpTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/JumpTable.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/JumpTableBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/JumpTableBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/LinearSearchJumpTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/LinearSearchJumpTable.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/Matcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/Matcher.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/MatcherBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/MatcherBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/MatcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/MatcherFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/MatcherPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/MatcherPolicy.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/PathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/PathSegment.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/PolicyJumpTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/PolicyJumpTable.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/PolicyJumpTableEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/PolicyJumpTableEdge.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/PolicyNodeEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/PolicyNodeEdge.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/SingleEntryAsciiJumpTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/SingleEntryAsciiJumpTable.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/SingleEntryJumpTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/SingleEntryJumpTable.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Matching/ZeroEntryJumpTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Matching/ZeroEntryJumpTable.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Microsoft.AspNetCore.Routing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Microsoft.AspNetCore.Routing.csproj -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/ModelEndpointDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/ModelEndpointDataSource.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/ParameterPolicyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/ParameterPolicyFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/DefaultRoutePatternTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/DefaultRoutePatternTransformer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RouteParameterParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RouteParameterParser.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RoutePattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RoutePattern.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternException.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternLiteralPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternLiteralPart.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternMatcher.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternParameterKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternParameterKind.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternParameterPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternParameterPart.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternParameterPolicyReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternParameterPolicyReference.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternParser.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternPart.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternPartKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternPartKind.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternPathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternPathSegment.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternSeparatorPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternSeparatorPart.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Patterns/RoutePatternTransformer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RequestDelegateRouteBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RequestDelegateRouteBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Route.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Route.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouteBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouteBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouteBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouteBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouteCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouteCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouteConstraintBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouteConstraintBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouteConstraintMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouteConstraintMatcher.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouteCreationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouteCreationException.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouteEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouteEndpoint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouteEndpointModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouteEndpointModel.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouteHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouteHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouteOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouteValueEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouteValueEqualityComparer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouteValuesAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouteValuesAddress.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouteValuesAddressMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouteValuesAddressMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouteValuesAddressScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouteValuesAddressScheme.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RouterMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RouterMiddleware.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/RoutingFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/RoutingFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/SuppressLinkGenerationMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/SuppressLinkGenerationMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/SuppressMatchingMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/SuppressMatchingMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Template/InlineConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Template/InlineConstraint.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Template/RoutePrecedence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Template/RoutePrecedence.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Template/RouteTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Template/RouteTemplate.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Template/TemplateBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Template/TemplateBinder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Template/TemplateMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Template/TemplateMatcher.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Template/TemplateParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Template/TemplateParser.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Template/TemplatePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Template/TemplatePart.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Template/TemplateSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Template/TemplateSegment.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Template/TemplateValuesResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Template/TemplateValuesResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Tree/InboundMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Tree/InboundMatch.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Tree/InboundRouteEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Tree/InboundRouteEntry.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Tree/OutboundMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Tree/OutboundMatch.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Tree/OutboundRouteEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Tree/OutboundRouteEntry.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Tree/TreeEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Tree/TreeEnumerator.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Tree/TreeRouteBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Tree/TreeRouteBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Tree/TreeRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Tree/TreeRouter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Tree/UrlMatchingNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Tree/UrlMatchingNode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/Tree/UrlMatchingTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/Tree/UrlMatchingTree.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Routing/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/src/Microsoft.AspNetCore.Routing/baseline.netcore.json -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests/Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests/Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests.csproj -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests/RouteDataTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests/RouteDataTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests/VirtualPathDataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests/VirtualPathDataTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.DecisionTree.Sources.Tests/DecisionTreeBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.DecisionTree.Sources.Tests/DecisionTreeBuilderTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.DecisionTree.Sources.Tests/Microsoft.AspNetCore.Routing.DecisionTree.Sources.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.DecisionTree.Sources.Tests/Microsoft.AspNetCore.Routing.DecisionTree.Sources.Tests.csproj -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.FunctionalTests/Benchmarks/EndpointRoutingBenchmarkTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.FunctionalTests/Benchmarks/EndpointRoutingBenchmarkTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.FunctionalTests/Benchmarks/RouterBenchmarkTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.FunctionalTests/Benchmarks/RouterBenchmarkTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.FunctionalTests/EndpointRoutingSampleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.FunctionalTests/EndpointRoutingSampleTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.FunctionalTests/Microsoft.AspNetCore.Routing.FunctionalTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.FunctionalTests/Microsoft.AspNetCore.Routing.FunctionalTests.csproj -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.FunctionalTests/RouterSampleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.FunctionalTests/RouterSampleTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.FunctionalTests/RoutingTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.FunctionalTests/RoutingTestFixture.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.FunctionalTests/WebHostBuilderExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.FunctionalTests/WebHostBuilderExtensionsTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Builder/EndpointRoutingApplicationBuilderExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Builder/EndpointRoutingApplicationBuilderExtensionsTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Builder/MapEndpointEndpointDataSourceBuilderExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Builder/MapEndpointEndpointDataSourceBuilderExtensionsTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Builder/RoutingBuilderExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Builder/RoutingBuilderExtensionsTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/CompositeEndpointDataSourceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/CompositeEndpointDataSourceTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/ConstraintMatcherTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/ConstraintMatcherTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/AlphaRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/AlphaRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/BoolRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/BoolRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/CompositeRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/CompositeRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/ConstraintsTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/ConstraintsTestHelper.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/DateTimeRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/DateTimeRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/DecimalRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/DecimalRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/DoubleRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/DoubleRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/FloatRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/FloatRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/GuidRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/GuidRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/HttpMethodRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/HttpMethodRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/IntRouteConstraintsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/IntRouteConstraintsTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/LengthRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/LengthRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/LongRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/LongRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/MaxLengthRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/MaxLengthRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/MaxRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/MaxRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/MinLengthRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/MinLengthRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/MinRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/MinRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/RangeRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/RangeRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/RegexInlineRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/RegexInlineRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/RegexRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/RegexRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/RequiredRouteConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/RequiredRouteConstraintTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Constraints/StringRouteConstraintTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Constraints/StringRouteConstraintTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/DataSourceDependentCacheTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/DataSourceDependentCacheTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/DefaultEndpointDataSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/DefaultEndpointDataSourceTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/DefaultInlineConstraintResolverTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/DefaultInlineConstraintResolverTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/DefaultLinkGeneratorProcessTemplateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/DefaultLinkGeneratorProcessTemplateTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/DefaultLinkGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/DefaultLinkGeneratorTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/DefaultParameterPolicyFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/DefaultParameterPolicyFactoryTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/EndpointFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/EndpointFactory.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/EndpointMiddlewareTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/EndpointMiddlewareTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/EndpointNameAddressSchemeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/EndpointNameAddressSchemeTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/EndpointRoutingMiddlewareTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/EndpointRoutingMiddlewareTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/EndpointSelectorContextTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/EndpointSelectorContextTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/InlineRouteParameterParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/InlineRouteParameterParserTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Internal/DfaGraphWriterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Internal/DfaGraphWriterTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Internal/LinkGenerationDecisionTreeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Internal/LinkGenerationDecisionTreeTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Internal/PathTokenizerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Internal/PathTokenizerTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Internal/UriBuildingContextTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Internal/UriBuildingContextTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/LinkGeneratorEndpointNameExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/LinkGeneratorEndpointNameExtensionsTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/LinkGeneratorRouteValuesAddressExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/LinkGeneratorRouteValuesAddressExtensionsTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/LinkGeneratorTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/LinkGeneratorTestBase.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Logging/WriteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Logging/WriteContext.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/AsciiTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/AsciiTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/BarebonesMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/BarebonesMatcher.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/BarebonesMatcherBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/BarebonesMatcherBuilder.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/BarebonesMatcherConformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/BarebonesMatcherConformanceTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/CandidateSetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/CandidateSetTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/DataSourceDependentMatcherTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/DataSourceDependentMatcherTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/DefaultEndpointSelectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/DefaultEndpointSelectorTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/DfaMatcherBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/DfaMatcherBuilderTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/DfaMatcherConformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/DfaMatcherConformanceTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/DfaMatcherTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/DfaMatcherTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/DictionaryJumpTableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/DictionaryJumpTableTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/EndpointMetadataComparerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/EndpointMetadataComparerTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/FastPathTokenizerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/FastPathTokenizerTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/FullFeaturedMatcherConformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/FullFeaturedMatcherConformanceTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/HttpMethodMatcherPolicyIntegrationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/HttpMethodMatcherPolicyIntegrationTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/HttpMethodMatcherPolicyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/HttpMethodMatcherPolicyTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/ILEmitTrieFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/ILEmitTrieFactoryTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/ILEmitTrieJumpTableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/ILEmitTrieJumpTableTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/LinearSearchJumpTableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/LinearSearchJumpTableTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/MatcherAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/MatcherAssert.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/MatcherConformanceTest.MultipleEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/MatcherConformanceTest.MultipleEndpoint.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/MatcherConformanceTest.SingleEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/MatcherConformanceTest.SingleEndpoint.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/MatcherConformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/MatcherConformanceTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/MultipleEntryJumpTableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/MultipleEntryJumpTableTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/NonVectorizedILEmitTrieJumpTableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/NonVectorizedILEmitTrieJumpTableTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/RouteEndpointComparerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/RouteEndpointComparerTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/RouteMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/RouteMatcher.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/RouteMatcherBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/RouteMatcherBuilder.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/RouteMatcherConformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/RouteMatcherConformanceTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/SingleEntryAsciiJumpTableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/SingleEntryAsciiJumpTableTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/SingleEntryJumpTableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/SingleEntryJumpTableTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/SingleEntryJumpTableTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/SingleEntryJumpTableTestBase.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/TreeRouterMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/TreeRouterMatcher.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/TreeRouterMatcherBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/TreeRouterMatcherBuilder.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/TreeRouterMatcherConformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/TreeRouterMatcherConformanceTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/VectorizedILEmitTrieJumpTableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/VectorizedILEmitTrieJumpTableTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Matching/ZeroEntryJumpTableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Matching/ZeroEntryJumpTableTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Microsoft.AspNetCore.Routing.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Microsoft.AspNetCore.Routing.Tests.csproj -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Patterns/DefaultRoutePatternTransformerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Patterns/DefaultRoutePatternTransformerTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Patterns/InlineRouteParameterParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Patterns/InlineRouteParameterParserTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Patterns/RoutePatternFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Patterns/RoutePatternFactoryTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Patterns/RoutePatternMatcherTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Patterns/RoutePatternMatcherTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Patterns/RoutePatternParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Patterns/RoutePatternParserTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/RequestDelegateRouteBuilderExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/RequestDelegateRouteBuilderExtensionsTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/RouteBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/RouteBuilderTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/RouteCollectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/RouteCollectionTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/RouteConstraintBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/RouteConstraintBuilderTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/RouteEndpointModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/RouteEndpointModelTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/RouteOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/RouteOptionsTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/RouteTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/RouteTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/RouteValueEqualityComparerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/RouteValueEqualityComparerTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/RouteValuesAddressMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/RouteValuesAddressMetadataTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/RouteValuesAddressSchemeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/RouteValuesAddressSchemeTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/RouterMiddlewareTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/RouterMiddlewareTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Template/RoutePatternPrecedenceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Template/RoutePatternPrecedenceTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Template/RoutePrecedenceTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Template/RoutePrecedenceTestsBase.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Template/RouteTemplatePrecedenceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Template/RouteTemplatePrecedenceTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Template/TemplateBinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Template/TemplateBinderTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Template/TemplateMatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Template/TemplateMatcherTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Template/TemplateParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Template/TemplateParserTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Template/TemplateSegmentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Template/TemplateSegmentTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/TemplateParserDefaultValuesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/TemplateParserDefaultValuesTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/TestConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/TestConstants.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/TestObjects/CapturingConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/TestObjects/CapturingConstraint.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/TestObjects/DynamicEndpointDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/TestObjects/DynamicEndpointDataSource.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/TestObjects/SlugifyParameterTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/TestObjects/SlugifyParameterTransformer.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/TestObjects/TestMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/TestObjects/TestMatcher.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/TestObjects/TestMatcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/TestObjects/TestMatcherFactory.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/TestObjects/TestServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/TestObjects/TestServiceProvider.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Tree/TreeRouteBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Tree/TreeRouteBuilderTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Routing.Tests/Tree/TreeRouterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/Microsoft.AspNetCore.Routing.Tests/Tree/TreeRouterTest.cs -------------------------------------------------------------------------------- /test/WebSites/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/WebSites/Directory.Build.props -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/EndsWithStringRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/WebSites/RoutingWebSite/EndsWithStringRouteConstraint.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/HelloExtension/EndpointRouteBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/WebSites/RoutingWebSite/HelloExtension/EndpointRouteBuilderExtensions.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/HelloExtension/HelloAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/WebSites/RoutingWebSite/HelloExtension/HelloAppBuilderExtensions.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/HelloExtension/HelloMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/WebSites/RoutingWebSite/HelloExtension/HelloMiddleware.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/HelloExtension/HelloOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/WebSites/RoutingWebSite/HelloExtension/HelloOptions.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/WebSites/RoutingWebSite/Program.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/RoutingWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/WebSites/RoutingWebSite/RoutingWebSite.csproj -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/UseEndpointRoutingStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/WebSites/RoutingWebSite/UseEndpointRoutingStartup.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/UseRouterStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/test/WebSites/RoutingWebSite/UseRouterStartup.cs -------------------------------------------------------------------------------- /tools/Swaggatherer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/tools/Swaggatherer/Program.cs -------------------------------------------------------------------------------- /tools/Swaggatherer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/tools/Swaggatherer/README.md -------------------------------------------------------------------------------- /tools/Swaggatherer/RouteEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/tools/Swaggatherer/RouteEntry.cs -------------------------------------------------------------------------------- /tools/Swaggatherer/Swaggatherer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/tools/Swaggatherer/Swaggatherer.csproj -------------------------------------------------------------------------------- /tools/Swaggatherer/SwaggathererApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/tools/Swaggatherer/SwaggathererApplication.cs -------------------------------------------------------------------------------- /tools/Swaggatherer/Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/tools/Swaggatherer/Template.cs -------------------------------------------------------------------------------- /version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Routing/HEAD/version.props --------------------------------------------------------------------------------