1 instantiation of EndpointProbeAnnotation
Aspire.Hosting (1)
ResourceBuilderExtensions.cs (1)
5075var endpointProbeAnnotation = new EndpointProbeAnnotation
9 references to EndpointProbeAnnotation
Aspire.Hosting (1)
ResourceBuilderExtensions.cs (1)
5075var endpointProbeAnnotation = new EndpointProbeAnnotation
Aspire.Hosting.Azure.AppContainers (1)
BaseContainerAppContext.cs (1)
543if (probeAnnotation is EndpointProbeAnnotation endpointProbeAnnotation
Aspire.Hosting.Azure.AppService (2)
AzureAppServiceWebsiteContext.cs (2)
645var endpointProbeAnnotation = probeAnnotations 646.OfType<EndpointProbeAnnotation>()
Aspire.Hosting.Azure.FrontDoor (2)
AzureFrontDoorExtensions.cs (2)
235var probeAnnotation = resource.Annotations 236.OfType<EndpointProbeAnnotation>()
Aspire.Hosting.Kubernetes (1)
KubernetesResource.cs (1)
335if (probeAnnotation is EndpointProbeAnnotation endpointProbeAnnotation
Aspire.Hosting.Tests (2)
ResourceWithProbeTests.cs (2)
38Assert.IsType<EndpointProbeAnnotation>(annotation); 39Assert.Equal("/ready", ((EndpointProbeAnnotation)annotation).Path);