Skip to content
DocsTry Aspire
DocsTry

PostgresServerResource Methods

ClassMethods1 member
A resource that represents a PostgreSQL container.
GetConnectionStringAsync(CancellationToken)Section titled GetConnectionStringAsync(CancellationToken)ValueTask<string?>
Gets the connection string for the PostgreSQL server.
public class PostgresServerResource
{
public ValueTask<string?> GetConnectionStringAsync(
CancellationToken cancellationToken = default(CancellationToken))
{
// ...
}
}
cancellationTokenCancellationTokenoptional A Threading.CancellationToken to observe while waiting for the task to complete.
ValueTask<string?>A connection string for the PostgreSQL server in the form "Host=host;Port=port;Username=postgres;Password=password".