1 instantiation of AzureAppServiceWebsiteContext
Aspire.Hosting.Azure.AppService (1)
AzureAppServiceEnvironmentContext.cs (1)
40_appServices[resource] = context = new AzureAppServiceWebsiteContext(resource, this);
7 references to AzureAppServiceWebsiteContext
Aspire.Hosting.Azure.AppService (7)
AzureAppServiceEnvironmentContext.cs (4)
24private readonly Dictionary<IResource, AzureAppServiceWebsiteContext> _appServices = new(new ResourceNameComparer()); 26public AzureAppServiceWebsiteContext GetAppServiceContext(IResource resource) 28if (!_appServices.TryGetValue(resource, out var context)) 38if (!_appServices.TryGetValue(resource, out var context))
AzureAppServiceWebsiteContext.cs (2)
149var context = environmentContext.GetAppServiceContext(ep.Resource); 188var context = environmentContext.GetAppServiceContext(epExpr.Endpoint.Resource);
AzureAppServiceWebSiteResource.cs (1)
87var context = environmentContextAnnotation.EnvironmentContext.GetAppServiceContext(targetResource);