2 implementations of GetDashboardInfoV2Async
aspire (1)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
444public async Task<GetDashboardInfoResponse?> GetDashboardInfoV2Async(CancellationToken cancellationToken = default)
Aspire.Cli.Tests (1)
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
150public Task<GetDashboardInfoResponse?> GetDashboardInfoV2Async(CancellationToken cancellationToken = default)
3 references to GetDashboardInfoV2Async
aspire (3)
Commands\ExportCommand.cs (1)
95var dashboardInfo = await connection.GetDashboardInfoV2Async(cancellationToken);
Commands\TelemetryCommandHelpers.cs (1)
123var dashboardInfo = await result.Connection!.GetDashboardInfoV2Async(cancellationToken);
Mcp\Tools\McpToolHelpers.cs (1)
21var dashboardInfo = await connection.GetDashboardInfoV2Async(cancellationToken).ConfigureAwait(false);