1 write to Parameters
Microsoft.AspNetCore.Routing (1)
Tree\UrlMatchingTree.cs (1)
154current.Parameters = new UrlMatchingNode(length: i + 1);
11 references to Parameters
Microsoft.AspNetCore.Routing (4)
Tree\TreeEnumerator.cs (2)
82if (next.Parameters != null) 84_stack.Push(next.Parameters);
Tree\UrlMatchingTree.cs (2)
152if (current.Parameters == null) 157current = current.Parameters;
Microsoft.AspNetCore.Routing.Tests (7)
Tree\TreeRouteBuilderTest.cs (7)
91Assert.NotNull(firstSegment.Value.Parameters); 93var secondSegment = firstSegment.Value.Parameters; 123Assert.NotNull(firstSegment.Value.Parameters); 125var secondSegment = firstSegment.Value.Parameters; 132var fourthSegment = thirdSegment.Value.Parameters; 167Assert.NotNull(firstSegment.Value.Parameters); 169var secondSegment = firstSegment.Value.Parameters;