3 writes to Text
Microsoft.AspNetCore.Routing (3)
Template\TemplatePart.cs (3)
35
Text
= literal.Content;
48
Text
= separator.Content;
68
Text
= text,
11 references to Text
Microsoft.AspNetCore.Mvc.ApiExplorer (2)
DefaultApiDescriptionProvider.cs (2)
402
part.
Text
!.ToLowerInvariant() :
403
part.
Text
;
Microsoft.AspNetCore.Routing (6)
Template\TemplatePart.cs (4)
108
[MemberNotNullWhen(true, nameof(
Text
))]
147
return
Text
;
159
return RoutePatternFactory.SeparatorPart(
Text
!);
163
return RoutePatternFactory.LiteralPart(
Text
!);
Tree\UrlMatchingTree.cs (2)
103
if (!current.Literals.TryGetValue(part.
Text
, out var next))
106
current.Literals.Add(part.
Text
, next);
Swaggatherer (3)
SwaggathererApplication.cs (3)
194
entry.Template.Segments[k].Parts[0].
Text
,
195
other.Template.Segments[k].Parts[0].
Text
,
248
url.Append(part.IsLiteral ? part.
Text
: GenerateParameterValue(part));