Skip to content
DocsTry Aspire
DocsTry

BicepOutputReference Methods

ClassMethods2 members
A reference to an output from a bicep template.
GetHashCodeSection titled GetHashCodeoverrideint
Serves as the default hash function.
public sealed class BicepOutputReference
{
public override int GetHashCode()
{
// ...
}
}
intA 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))
{
// ...
}
}
cancellationTokenCancellationTokenoptional A Threading.CancellationToken to observe while waiting for the task to complete.