Implemented interface member:
method
GetValueAsync
Aspire.Hosting.ApplicationModel.IValueProvider.GetValueAsync(System.Threading.CancellationToken)
26 references to GetValueAsync
Aspire.Hosting.Azure.AppContainers (3)
AzureContainerAppEnvironmentResource.cs (1)
158var domainValue = await ContainerAppDomain.GetValueAsync(context.CancellationToken).ConfigureAwait(false);
AzureContainerAppResource.cs (1)
50var domainValue = await containerAppEnv.ContainerAppDomain.GetValueAsync(ctx.CancellationToken).ConfigureAwait(false);
ContainerAppUrls.cs (1)
17var environmentIdValue = await containerAppEnv.ContainerAppEnvironmentId.GetValueAsync(cancellationToken).ConfigureAwait(false)
Aspire.Hosting.Azure.AppService (3)
AppSvcUrls.cs (1)
18var planIdValue = await computerEnv.PlanIdOutputReference.GetValueAsync(cancellationToken).ConfigureAwait(false)
AzureAppServiceEnvironmentResource.cs (1)
242var dashboardUri = await DashboardUriReference.GetValueAsync(context.CancellationToken).ConfigureAwait(false);
AzureAppServiceWebSiteResource.cs (1)
114var websiteSuffix = await computerEnv.WebSiteSuffix.GetValueAsync(context.CancellationToken).ConfigureAwait(false);
Aspire.Hosting.Azure.Kubernetes (1)
AzureKubernetesEnvironmentResource.AksPipeline.cs (1)
218var clusterName = await NameOutputReference.GetValueAsync(context.CancellationToken).ConfigureAwait(false)
Aspire.Hosting.Azure.Sandboxes (1)
AzureSandboxContainerDeployment.cs (1)
683var registryEndpoint = await registry.RegistryEndpoint.GetValueAsync(cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Azure.Tests (5)
AzureDeployerTests.cs (4)
1178Assert.Equal(await ((BicepOutputReference)funcAppDeployment.Parameters["env_outputs_azure_container_apps_environment_default_domain"]!).GetValueAsync(), containerAppEnv.Resource.Outputs["AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN"]); 1179Assert.Equal(await ((BicepOutputReference)funcAppDeployment.Parameters["env_outputs_azure_container_apps_environment_id"]!).GetValueAsync(), containerAppEnv.Resource.Outputs["AZURE_CONTAINER_APPS_ENVIRONMENT_ID"]); 1180Assert.Equal("https://testfuncstorage.blob.core.windows.net/", await ((BicepOutputReference)funcAppDeployment.Parameters["funcstorage_outputs_blobendpoint"]!).GetValueAsync()); 1181Assert.Equal("https://testhoststorage.blob.core.windows.net/", await ((BicepOutputReference)funcAppDeployment.Parameters["hoststorage_outputs_blobendpoint"]!).GetValueAsync());
AzureEnvironmentResourceExtensionsTests.cs (1)
516var outputTask = storage.GetOutput("blobEndpoint").GetValueAsync(CancellationToken.None).AsTask();
Aspire.Hosting.Foundry (10)
HostedAgent\AzureHostedAgentResource.cs (2)
160var projectEndpoint = await project.Endpoint.GetValueAsync(context.CancellationToken).ConfigureAwait(false); 248var foundryResourceId = await project.Parent.Id.GetValueAsync(context.CancellationToken).ConfigureAwait(false);
PromptAgent\AzurePromptAgentResource.cs (3)
202var projectEndpoint = await project.Endpoint.GetValueAsync(cancellationToken).ConfigureAwait(false); 422var foundryAccountName = await Project.Parent.NameOutputReference.GetValueAsync(cancellationToken).ConfigureAwait(false); 423var projectNameOutput = await Project.NameOutputReference.GetValueAsync(cancellationToken).ConfigureAwait(false);
PromptAgent\PromptAgentBuilderExtensions.cs (1)
84var endpoint = await agent.Project.Endpoint.GetValueAsync(ctx.CancellationToken).ConfigureAwait(false);
Toolbox\FoundryToolboxResource.cs (1)
266var projectEndpoint = await Parent.Endpoint.GetValueAsync(cancellationToken).ConfigureAwait(false);
Toolbox\FoundryToolboxToolDefinition.cs (1)
388var connectionId = await connectionIdRef.GetValueAsync(cancellationToken).ConfigureAwait(false);
ToolResources\AzureAISearchToolResource.cs (1)
66var connectionId = await connectionIdRef.GetValueAsync(cancellationToken).ConfigureAwait(false);
ToolResources\BingGroundingToolResource.cs (1)
64var connectionId = await connectionIdRef.GetValueAsync(cancellationToken).ConfigureAwait(false);
Pipelines.AppHost (3)
AppHost.cs (3)
58var storageAccountName = await acaEnv.GetOutput("storagE_VOLUME_ACCOUNT_NAME").GetValueAsync(); 242var storageAccountName = await acaEnv.GetOutput("storagE_VOLUME_ACCOUNT_NAME").GetValueAsync(); 262var fileShareName = await acaEnv.GetOutput($"shareS_{i}_NAME").GetValueAsync();