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. 252public class NetworkEndpointSnapshotList : IEnumerable<NetworkEndpointSnapshot> 254private readonly ConcurrentBag<NetworkEndpointSnapshot> _snapshots = new(); 259public IEnumerator<NetworkEndpointSnapshot> GetEnumerator()
ApplicationModel\EndpointReference.cs (2)
157foreach (var nes in endpointAnnotation.AllAllocatedEndpoints) 296var nes = Endpoint.EndpointAnnotation.AllAllocatedEndpoints.Where(nes => nes.NetworkID == networkContext).FirstOrDefault();