7 implementations of SaveSectionAsync
Aspire.Hosting (1)
Pipelines\Internal\DeploymentStateManagerBase.cs (1)
158public async Task SaveSectionAsync(DeploymentStateSection section, CancellationToken cancellationToken = default)
Aspire.Hosting.Azure.Tests (3)
AzureBicepProvisionerTests.cs (1)
232public Task SaveSectionAsync(DeploymentStateSection section, CancellationToken cancellationToken = default)
AzureDeployerTests.cs (1)
1239public Task SaveSectionAsync(DeploymentStateSection section, CancellationToken cancellationToken = default) => Task.CompletedTask;
ProvisioningTestHelpers.cs (1)
622public Task SaveSectionAsync(DeploymentStateSection section, CancellationToken cancellationToken = default)
Aspire.Hosting.Tests (3)
Orchestrator\ApplicationOrchestratorTests.cs (1)
512public Task SaveSectionAsync(DeploymentStateSection section, CancellationToken cancellationToken = default)
Orchestrator\ParameterProcessorTests.cs (2)
798public Task SaveSectionAsync(DeploymentStateSection section, CancellationToken cancellationToken = default) 1001public Task SaveSectionAsync(DeploymentStateSection section, CancellationToken cancellationToken = default)
6 references to SaveSectionAsync
Aspire.Hosting (3)
Orchestrator\ParameterProcessor.cs (2)
332await deploymentStateManager.SaveSectionAsync(slot).ConfigureAwait(false); 368await deploymentStateManager.SaveSectionAsync(slot, cancellationToken).ConfigureAwait(false);
Pipelines\DeploymentStateSection.cs (1)
44/// This version is automatically incremented by <see cref="IDeploymentStateManager.SaveSectionAsync"/>
Aspire.Hosting.Azure (2)
Provisioning\Internal\BaseProvisioningContextProvider.cs (1)
177await deploymentStateManager.SaveSectionAsync(azureStateSection, cancellationToken).ConfigureAwait(false);
Provisioning\Provisioners\BicepProvisioner.cs (1)
266await deploymentStateManager.SaveSectionAsync(stateSection, cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Azure.Tests (1)
ProvisioningContextTests.cs (1)
204await manager.SaveSectionAsync(azureSection);