5 implementations of SubscribeConsoleLogs
Aspire.Dashboard (1)
ResourceService\DashboardClient.cs (1)
467
async IAsyncEnumerable<IReadOnlyList<ResourceLogLine>> IDashboardClient.
SubscribeConsoleLogs
(string resourceName, [EnumeratorCancellation] CancellationToken cancellationToken)
Aspire.Dashboard.Components.Tests (2)
Controls\ApplicationNameTests.cs (1)
81
public IAsyncEnumerable<IReadOnlyList<ResourceLogLine>>
SubscribeConsoleLogs
(string resourceName, CancellationToken cancellationToken) => throw new NotImplementedException();
Shared\TestDashboardClient.cs (1)
51
public async IAsyncEnumerable<IReadOnlyList<ResourceLogLine>>
SubscribeConsoleLogs
(string resourceName, [EnumeratorCancellation] CancellationToken cancellationToken)
Aspire.Dashboard.Tests (2)
Integration\Playwright\Infrastructure\MockDashboardClient.cs (1)
36
public IAsyncEnumerable<IReadOnlyList<ResourceLogLine>>
SubscribeConsoleLogs
(string resourceName, CancellationToken cancellationToken) => throw new NotImplementedException();
ResourceOutgoingPeerResolverTests.cs (1)
229
public IAsyncEnumerable<IReadOnlyList<ResourceLogLine>>
SubscribeConsoleLogs
(string resourceName, CancellationToken cancellationToken) => throw new NotImplementedException();
2 references to SubscribeConsoleLogs
Aspire.Dashboard (2)
Components\Pages\ConsoleLogs.razor.cs (1)
471
var subscription = DashboardClient.
SubscribeConsoleLogs
(newConsoleLogsSubscription.Name, newConsoleLogsSubscription.CancellationToken);
ResourceService\DashboardClient.cs (1)
33
/// <see cref="IDashboardClient.SubscribeResourcesAsync"/> and <see cref="IDashboardClient.
SubscribeConsoleLogs
"/>