Skip to content
Docs Try Aspire

BicepOutputReference Methods

Class Methods 2 members
A reference to an output from a bicep template.
GetHashCode Section titled GetHashCode override int
Serves as the default hash function.
public sealed class BicepOutputReference
{
public override int GetHashCode()
{
// ...
}
}
int A hash code for the current object.
GetValueAsync(CancellationToken) Section titled GetValueAsync(CancellationToken) ValueTask<string?>
The value of the output.
public sealed class BicepOutputReference
{
public ValueTask<string?> GetValueAsync(
CancellationToken cancellationToken = default(CancellationToken))
{
// ...
}
}
cancellationToken CancellationToken optional A Threading.CancellationToken to observe while waiting for the task to complete.