5 references to _firstValueTcs
Aspire.Hosting (5)
ApplicationModel\ValueSnapshot.cs (5)
29public bool IsValueSet => _firstValueTcs.Task.IsCompleted; 43return _currentValue ?? _firstValueTcs.Task.WaitAsync(cancellationToken); 55if (!_firstValueTcs.TrySetResult(value)) 73if (!_firstValueTcs.TrySetException(exception)) 79private T? DebuggerValue() => IsValueSet ? _firstValueTcs.Task.Result : default;