Implemented interface member:
method
GetConnectionStringAsync
Aspire.Hosting.ApplicationModel.IResourceWithConnectionString.GetConnectionStringAsync(System.Threading.CancellationToken)
5 references to GetConnectionStringAsync
Aspire.Hosting.Azure.Tests (3)
AzureBicepResourceTests.cs (3)
1498Assert.Equal("myconnectionstring", await postgres.Resource.GetConnectionStringAsync(default)); 1616Assert.Equal("myconnectionstring", await postgres.Resource.GetConnectionStringAsync(default)); 1723Assert.Equal(expectedConnectionString, await postgres.Resource.GetConnectionStringAsync());
Aspire.Hosting.PostgreSQL (1)
PostgresBuilderExtensions.cs (1)
57connectionString = await postgresServer.GetConnectionStringAsync(ct).ConfigureAwait(false);
Aspire.Hosting.PostgreSQL.Tests (1)
AddPostgresTests.cs (1)
178var postgresConnectionString = await postgresResource.GetConnectionStringAsync();