6 implementations of LoadStateAsync
Aspire.Hosting (2)
Publishing\Internal\FileDeploymentStateManager.cs (1)
52
public async Task<JsonObject>
LoadStateAsync
(CancellationToken cancellationToken = default)
Publishing\Internal\UserSecretsDeploymentStateManager.cs (1)
37
public async Task<JsonObject>
LoadStateAsync
(CancellationToken cancellationToken = default)
Aspire.Hosting.Azure.Tests (2)
AzureDeployerTests.cs (1)
890
public Task<JsonObject>
LoadStateAsync
(CancellationToken cancellationToken = default) => Task.FromResult(new JsonObject());
ProvisioningTestHelpers.cs (1)
580
public Task<JsonObject>
LoadStateAsync
(CancellationToken cancellationToken = default)
Aspire.Hosting.Tests (2)
Orchestrator\ApplicationOrchestratorTests.cs (1)
489
public Task<JsonObject>
LoadStateAsync
(CancellationToken cancellationToken = default)
Orchestrator\ParameterProcessorTests.cs (1)
791
public Task<JsonObject>
LoadStateAsync
(CancellationToken cancellationToken = default)
5 references to LoadStateAsync
Aspire.Hosting (2)
Orchestrator\ParameterProcessor.cs (2)
241
deploymentState = await deploymentStateManager.
LoadStateAsync
().ConfigureAwait(false);
386
var deploymentState = await deploymentStateManager.
LoadStateAsync
(cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Azure (2)
AzureDeployingContext.cs (1)
43
var userSecrets = await deploymentStateManager.
LoadStateAsync
(cancellationToken).ConfigureAwait(false);
Provisioning\Provisioners\AzureProvisioner.cs (1)
168
var deploymentState = await deploymentStateManager.
LoadStateAsync
(cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Azure.Tests (1)
ProvisioningContextTests.cs (1)
208
var loaded = await manager.
LoadStateAsync
();