1 instantiation of EndpointProbeAnnotation
Aspire.Hosting (1)
ResourceBuilderExtensions.cs (1)
2417var endpointProbeAnnotation = new EndpointProbeAnnotation
7 references to EndpointProbeAnnotation
Aspire.Hosting (1)
ResourceBuilderExtensions.cs (1)
2417var endpointProbeAnnotation = new EndpointProbeAnnotation
Aspire.Hosting.Azure.AppContainers (1)
BaseContainerAppContext.cs (1)
471if (probeAnnotation is EndpointProbeAnnotation endpointProbeAnnotation
Aspire.Hosting.Azure.AppService (2)
AzureAppServiceWebsiteContext.cs (2)
314var endpointProbeAnnotation = probeAnnotations 315.OfType<EndpointProbeAnnotation>()
Aspire.Hosting.Kubernetes (1)
KubernetesResource.cs (1)
240if (probeAnnotation is EndpointProbeAnnotation endpointProbeAnnotation
Aspire.Hosting.Tests (2)
ResourceWithProbeTests.cs (2)
37Assert.IsType<EndpointProbeAnnotation>(annotation); 38Assert.Equal("/ready", ((EndpointProbeAnnotation)annotation).Path);