16 references to EndpointAnnotationName
Aspire.Hosting (16)
ApplicationModel\EndpointReference.cs (1)
193
.SingleOrDefault(a => string.Equals(a.Name, EndpointName, StringComparisons.
EndpointAnnotationName
));
ApplicationModel\ResourceExtensions.cs (2)
725
endpoints.FirstOrDefault(e => string.Equals(e.Name, endpointName, StringComparisons.
EndpointAnnotationName
)) :
748
endpoints.FirstOrDefault(e => string.Equals(e.Name, endpointName, StringComparisons.
EndpointAnnotationName
)) :
Dcp\DcpExecutor.cs (3)
1122
string.Equals(swr.EndpointAnnotation.Name, endpoint.Name, StringComparisons.
EndpointAnnotationName
)
1325
string.Equals(swr.EndpointAnnotation.Name, endpoint.Name, StringComparisons.
EndpointAnnotationName
)
3039
endpoint = endpoints.FirstOrDefault(e => string.Equals(e.Name, endpointName, StringComparisons.
EndpointAnnotationName
));
Dcp\ResourceSnapshotBuilder.cs (2)
260
string.Equals(endpointName, u.Endpoint?.EndpointName, StringComparisons.
EndpointAnnotationName
)
297
.FirstOrDefault(s => string.Equals(endpointName, s.EndpointName, StringComparisons.
EndpointAnnotationName
));
McpServerResourceBuilderExtensions.cs (2)
57
endpoint = endpoints.FirstOrDefault(e => string.Equals(e.EndpointName, endpointName, StringComparisons.
EndpointAnnotationName
));
69
endpoint = endpoints.FirstOrDefault(e => string.Equals(e.EndpointName, scheme, StringComparisons.
EndpointAnnotationName
));
Orchestrator\ApplicationOrchestrator.cs (1)
394
var primaryUrl = urls.FirstOrDefault(u => string.Equals(u.Endpoint?.EndpointName, primaryLaunchProfileEndpoint.Name, StringComparisons.
EndpointAnnotationName
));
ProjectResourceBuilderExtensions.cs (2)
628
var url = context.Urls.FirstOrDefault(u => string.Equals(u.Endpoint?.EndpointName, endpoint.Name, StringComparisons.
EndpointAnnotationName
));
687
projectResource.Annotations.OfType<EndpointAnnotation>().FirstOrDefault(sb => sb.UriScheme == scheme || string.Equals(sb.Name, scheme, StringComparisons.
EndpointAnnotationName
));
ResourceBuilderExtensions.cs (3)
1047
.SingleOrDefault(ea => string.Equals(ea.Name, endpointName, StringComparisons.
EndpointAnnotationName
));
1108
if (builder.Resource.Annotations.OfType<EndpointAnnotation>().Any(sb => string.Equals(sb.Name, annotation.Name, StringComparisons.
EndpointAnnotationName
)))
2924
matchingEndpoint = endpoints.FirstOrDefault(e => string.Equals(e.EndpointName, name, StringComparisons.
EndpointAnnotationName
));