3 implementations of GetResourceLogsAsync
aspire (1)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
456public async IAsyncEnumerable<ResourceLogLine> GetResourceLogsAsync(
Aspire.Cli.Tests (2)
Commands\TerminalCommandTests.cs (1)
698public IAsyncEnumerable<ResourceLogLine> GetResourceLogsAsync(string? resourceName = null, bool follow = false, CancellationToken cancellationToken = default)
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
192public async IAsyncEnumerable<ResourceLogLine> GetResourceLogsAsync(
2 references to GetResourceLogsAsync
aspire (2)
Commands\ExportCommand.cs (1)
260await foreach (var logLine in connection.GetResourceLogsAsync(resourceName, follow: false, cancellationToken).ConfigureAwait(false))
Mcp\Tools\ListConsoleLogsTool.cs (1)
88await foreach (var logLine in connection.GetResourceLogsAsync(resourceName, follow: false, cancellationToken).ConfigureAwait(false))