2 writes to ConstrainedParameters
Microsoft.AspNetCore.Routing (2)
Tree\UrlMatchingTree.cs (2)
91current.ConstrainedParameters = new UrlMatchingNode(length: i + 1); 143current.ConstrainedParameters = new UrlMatchingNode(length: i + 1);
10 references to ConstrainedParameters
Microsoft.AspNetCore.Routing (6)
Tree\TreeEnumerator.cs (2)
87if (next.ConstrainedParameters != null) 89_stack.Push(next.ConstrainedParameters);
Tree\UrlMatchingTree.cs (4)
89if (current.ConstrainedParameters == null) 94current = current.ConstrainedParameters; 141if (current.ConstrainedParameters == null) 146current = current.ConstrainedParameters;
Microsoft.AspNetCore.Routing.Tests (4)
Tree\TreeRouteBuilderTest.cs (4)
199Assert.NotNull(firstSegment.Value.ConstrainedParameters); 201var secondSegment = firstSegment.Value.ConstrainedParameters; 231Assert.NotNull(firstSegment.Value.ConstrainedParameters); 233var secondSegment = firstSegment.Value.ConstrainedParameters;