1 instantiation of NetworkEndpointSnapshot
Aspire.Hosting (1)
ApplicationModel\EndpointAnnotation.cs (1)
280
_snapshots.Add(new
NetworkEndpointSnapshot
(snapshot, networkID));
6 references to NetworkEndpointSnapshot
Aspire.Hosting (6)
ApplicationModel\EndpointAnnotation.cs (4)
250
/// Holds a list of <see cref="
NetworkEndpointSnapshot
"/> for an Endpoint, providing thread-safe enumeration and addition.
252
public class NetworkEndpointSnapshotList : IEnumerable<
NetworkEndpointSnapshot
>
254
private readonly ConcurrentBag<
NetworkEndpointSnapshot
> _snapshots = new();
259
public IEnumerator<
NetworkEndpointSnapshot
> GetEnumerator()
ApplicationModel\EndpointReference.cs (2)
157
foreach (
var
nes in endpointAnnotation.AllAllocatedEndpoints)
296
var
nes = Endpoint.EndpointAnnotation.AllAllocatedEndpoints.Where(nes => nes.NetworkID == networkContext).FirstOrDefault();