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)
708
endpoints.FirstOrDefault(e => StringComparers.
EndpointAnnotationName
.Equals(e.Name, endpointName)) :
731
endpoints.FirstOrDefault(e => StringComparers.
EndpointAnnotationName
.Equals(e.Name, endpointName)) :
Dcp\DcpExecutor.cs (3)
979
StringComparers.
EndpointAnnotationName
.Equals(swr.EndpointAnnotation.Name, endpoint.Name)
1161
StringComparers.
EndpointAnnotationName
.Equals(swr.EndpointAnnotation.Name, endpoint.Name)
2926
endpoint = endpoints.FirstOrDefault(e => StringComparers.
EndpointAnnotationName
.Equals(e.Name, endpointName));
ResourceBuilderExtensions.cs (1)
785
.Where(ea => StringComparers.
EndpointAnnotationName
.Equals(ea.Name, endpointName))