1 instantiation of BackchannelLogEntry
Aspire.Cli.Tests (1)
Commands\RunCommandTests.cs (1)
256yield return new BackchannelLogEntry
13 references to BackchannelLogEntry
aspire (8)
Backchannel\AppHostCliBackchannel.cs (5)
18IAsyncEnumerable<BackchannelLogEntry> GetAppHostLogEntriesAsync(CancellationToken cancellationToken); 81public async IAsyncEnumerable<BackchannelLogEntry> GetAppHostLogEntriesAsync([EnumeratorCancellation] CancellationToken cancellationToken) 85IAsyncEnumerable<BackchannelLogEntry>? logEntries = null; 93logEntries = await rpc.InvokeWithCancellationAsync<IAsyncEnumerable<BackchannelLogEntry>>( 109await foreach (var entry in EnumerateWithReconnect(logEntries, cancellationToken))
Backchannel\BackchannelJsonSerializerContext.cs (2)
27[JsonSerializable(typeof(IAsyncEnumerable<BackchannelLogEntry>))] 28[JsonSerializable(typeof(MessageFormatterEnumerableTracker.EnumeratorResults<BackchannelLogEntry>))]
Commands\RunCommand.cs (1)
515await foreach (var entry in logEntries.WithCancellation(cancellationToken))
Aspire.Cli.Tests (5)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
821public async IAsyncEnumerable<BackchannelLogEntry> GetAppHostLogEntriesAsync([EnumeratorCancellation] CancellationToken cancellationToken)
Commands\RunCommandTests.cs (1)
248private async IAsyncEnumerable<BackchannelLogEntry> ReturnLogEntriesUntilCancelledAsync([EnumeratorCancellation] CancellationToken cancellationToken)
TestServices\TestAppHostCliBackchannel.cs (3)
21public Func<CancellationToken, IAsyncEnumerable<BackchannelLogEntry>>? GetAppHostLogEntriesAsyncCallback { get; set; } 226public async IAsyncEnumerable<BackchannelLogEntry> GetAppHostLogEntriesAsync([EnumeratorCancellation]CancellationToken cancellationToken) 231await foreach (var entry in GetAppHostLogEntriesAsyncCallback.Invoke(cancellationToken))