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