3 implementations of GetAllLogsAsync
Aspire.Hosting (2)
ApplicationModel\ResourceLoggerService.cs (1)
897public IAsyncEnumerable<IReadOnlyList<LogEntry>> GetAllLogsAsync(string resourceName, CancellationToken cancellationToken)
Dcp\DcpResourceWatcher.cs (1)
546public async IAsyncEnumerable<IReadOnlyList<LogEntry>> GetAllLogsAsync(string resourceName, [EnumeratorCancellation] CancellationToken cancellationToken)
Aspire.Hosting.TestUtilities (1)
Utils\TestConsoleLogsService.cs (1)
19public async IAsyncEnumerable<IReadOnlyList<LogEntry>> GetAllLogsAsync(string resourceName, [EnumeratorCancellation] CancellationToken cancellationToken)
1 reference to GetAllLogsAsync
Aspire.Hosting (1)
ApplicationModel\ResourceLoggerService.cs (1)
434var consoleLogsEnumerable = consoleLogsService.GetAllLogsAsync(_name, cancellationToken);