3 writes to Parameters
Microsoft.AspNetCore.Routing (3)
Matching\DfaMatcherBuilder.cs (3)
294
parent.CatchAll.
Parameters
= parent.CatchAll;
312
parent.
Parameters
= new DfaNode()
349
parent.
Parameters
= new DfaNode()
19 references to Parameters
Microsoft.AspNetCore.Routing (19)
Internal\DfaGraphWriter.cs (3)
81
if (node.
Parameters
!= null)
83
writer.WriteLine($"{label} -> {visited[node.
Parameters
]} [label=\"/*\"]");
86
if (node.CatchAll != null && node.
Parameters
!= node.CatchAll)
Matching\DfaMatcherBuilder.cs (13)
275
if (parent.
Parameters
!= null)
277
nextParents.Add(parent.
Parameters
);
310
if (parent.
Parameters
== null)
339
nextParents.Add(parent.
Parameters
);
347
if (parent.
Parameters
== null)
367
nextParents.Add(parent.
Parameters
);
608
if (node.
Parameters
!= null &&
610
ReferenceEquals(node.
Parameters
, node.CatchAll))
614
currentExitDestination = currentDefaultDestination = Transition(node.
Parameters
);
616
else if (node.
Parameters
!= null && node.CatchAll != null)
620
currentDefaultDestination = Transition(node.
Parameters
);
623
else if (node.
Parameters
!= null)
626
currentDefaultDestination = Transition(node.
Parameters
);
Matching\DfaNode.cs (3)
91
if (
Parameters
!= null && !ReferenceEquals(this,
Parameters
))
93
Parameters
.Visit(visitor);