8 references to EndpointAnnotationName
Aspire.Hosting (8)
ApplicationModel\EndpointReference.cs (1)
159
.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)
701
endpoints.FirstOrDefault(e => StringComparers.
EndpointAnnotationName
.Equals(e.Name, endpointName)) :
724
endpoints.FirstOrDefault(e => StringComparers.
EndpointAnnotationName
.Equals(e.Name, endpointName)) :
Dcp\DcpExecutor.cs (3)
1039
StringComparers.
EndpointAnnotationName
.Equals(swr.EndpointAnnotation.Name, endpoint.Name)
1233
StringComparers.
EndpointAnnotationName
.Equals(swr.EndpointAnnotation.Name, endpoint.Name)
2861
endpoint = endpoints.FirstOrDefault(e => StringComparers.
EndpointAnnotationName
.Equals(e.Name, endpointName));
ResourceBuilderExtensions.cs (1)
866
.Where(ea => StringComparers.
EndpointAnnotationName
.Equals(ea.Name, endpointName))