8 references to EndpointAnnotationName
Aspire.Hosting (8)
ApplicationModel\EndpointReference.cs (1)
157
.SingleOrDefault(a => StringComparers.
EndpointAnnotationName
.Equals(a.Name, EndpointName));
ApplicationModel\EndpointReferenceAnnotation.cs (1)
13
public HashSet<string> EndpointNames { get; } = new(StringComparers.
EndpointAnnotationName
);
ApplicationModel\ResourceExtensions.cs (2)
699
endpoints.FirstOrDefault(e => StringComparers.
EndpointAnnotationName
.Equals(e.Name, endpointName)) :
722
endpoints.FirstOrDefault(e => StringComparers.
EndpointAnnotationName
.Equals(e.Name, endpointName)) :
Dcp\DcpExecutor.cs (3)
1017
StringComparers.
EndpointAnnotationName
.Equals(swr.EndpointAnnotation.Name, endpoint.Name)
1199
StringComparers.
EndpointAnnotationName
.Equals(swr.EndpointAnnotation.Name, endpoint.Name)
2808
endpoint = endpoints.FirstOrDefault(e => StringComparers.
EndpointAnnotationName
.Equals(e.Name, endpointName));
ResourceBuilderExtensions.cs (1)
843
.Where(ea => StringComparers.
EndpointAnnotationName
.Equals(ea.Name, endpointName))