1 write to DisplayName
Microsoft.AspNetCore.Http.Abstractions (1)
Routing\Endpoint.cs (1)
32
DisplayName
= displayName;
33 references to DisplayName
Microsoft.AspNetCore.Diagnostics (1)
DeveloperExceptionPage\DeveloperExceptionPageMiddlewareImpl.cs (1)
343
DisplayName = endpoint.
DisplayName
,
Microsoft.AspNetCore.Http (1)
Builder\ApplicationBuilder.cs (1)
175
$"The request reached the end of the pipeline without executing the endpoint: '{endpoint!.
DisplayName
}'. " +
Microsoft.AspNetCore.Http.Abstractions (1)
Routing\Endpoint.cs (1)
53
public override string? ToString() =>
DisplayName
?? base.ToString();
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
EndpointMetadataApiDescriptionProvider.cs (1)
108
DisplayName = routeEndpoint.
DisplayName
,
Microsoft.AspNetCore.Routing (29)
DefaultLinkGenerator.cs (7)
344
EndpointsFound(logger, endpoints.Select(e => e.
DisplayName
), address);
355
=> TemplateSucceeded(logger, endpoint.RoutePattern.RawText, endpoint.
DisplayName
, path.Value, query.Value);
367
TemplateFailedRequiredValues(logger, endpoint.RoutePattern.RawText, endpoint.
DisplayName
, FormatRouteValues(ambientValues), FormatRouteValues(values), FormatRouteValues(endpoint.RoutePattern.Defaults));
384
TemplateFailedConstraint(logger, endpoint.RoutePattern.RawText, endpoint.
DisplayName
, constraint, parameterName, FormatRouteValues(values));
400
TemplateFailedExpansion(logger, endpoint.RoutePattern.RawText, endpoint.
DisplayName
, FormatRouteValues(values));
417
LinkGenerationSucceeded(logger, endpoints.Select(e => e.
DisplayName
), uri);
432
LinkGenerationFailed(logger, endpoints.Select(e => e.
DisplayName
));
DefaultLinkParser.cs (3)
177
EndpointsFound(logger, endpoints.Select(e => e.
DisplayName
), address);
192
PathParsingSucceeded(logger, endpoint.
DisplayName
, path.Value);
204
PathParsingFailed(logger, endpoints.Select(e => e.
DisplayName
), path.Value);
EndpointDataSource.cs (2)
57
DisplayName = routeEndpoint.
DisplayName
,
138
sb.AppendLine(endpoint.
DisplayName
);
EndpointMiddleware.cs (3)
106
throw new InvalidOperationException($"Endpoint {endpoint.
DisplayName
} contains authorization metadata, " +
114
throw new InvalidOperationException($"Endpoint {endpoint.
DisplayName
} contains CORS metadata, " +
122
throw new InvalidOperationException($"Endpoint {endpoint.
DisplayName
} contains anti-forgery metadata, " +
EndpointNameAddressScheme.cs (1)
87
builder.AppendLine(endpoint.
DisplayName
);
EndpointRoutingMiddleware.cs (5)
286
throw new InvalidOperationException($"Endpoint {endpoint.
DisplayName
} contains authorization metadata, " +
292
throw new InvalidOperationException($"Endpoint {endpoint.
DisplayName
} contains CORS metadata, " +
298
throw new InvalidOperationException($"Endpoint {endpoint.
DisplayName
} contains anti-forgery metadata, " +
340
=> MatchSuccess(logger, endpoint.
DisplayName
);
349
=> MatchingSkipped(logger, endpoint.
DisplayName
);
Matching\CandidateSet.cs (1)
351
string.Join(Environment.NewLine, duplicates.Select(e => e.
DisplayName
));
Matching\DataSourceDependentMatcher.cs (2)
55
throw new InvalidOperationException($"Duplicate endpoint name '{endpointName}' found on '{endpoint.
DisplayName
}' and '{existingEndpoint}'. Endpoint names must be globally unique.");
58
seenEndpointNames.Add(endpointName, endpoint.
DisplayName
?? endpoint.RoutePattern.RawText);
Matching\DefaultEndpointSelector.cs (1)
123
string.Join(Environment.NewLine, matches.Select(e => e.
DisplayName
)));
Matching\DfaMatcher.cs (4)
370
CandidateRejectedByComplexSegment(logger, endpoint.
DisplayName
, routePattern, segment.DebuggerToString(), path);
386
CandidateRejectedByConstraint(logger, endpoint.
DisplayName
, routePattern, constraintName, constraint.ToString(), value, path);
402
CandidateNotValid(logger, endpoint.
DisplayName
, routePattern, path);
418
CandidateValid(logger, endpoint.
DisplayName
, routePattern, path);