3 instantiations of GetDashboardInfoResponse
aspire (1)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
459return new GetDashboardInfoResponse
Aspire.Cli.Tests (2)
Mcp\ListStructuredLogsToolTests.cs (1)
419DashboardInfoResponse = new GetDashboardInfoResponse
Mcp\ListTracesToolTests.cs (1)
458DashboardInfoResponse = new GetDashboardInfoResponse
8 references to GetDashboardInfoResponse
aspire (6)
Backchannel\AppHostAuxiliaryBackchannel.cs (2)
441public async Task<GetDashboardInfoResponse?> GetDashboardInfoV2Async(CancellationToken cancellationToken = default) 474return await rpc.InvokeWithCancellationAsync<GetDashboardInfoResponse>(
Backchannel\BackchannelJsonSerializerContext.cs (1)
65[JsonSerializable(typeof(GetDashboardInfoResponse))]
Backchannel\IAppHostAuxiliaryBackchannel.cs (1)
109Task<GetDashboardInfoResponse?> GetDashboardInfoV2Async(CancellationToken cancellationToken = default);
Commands\TelemetryCommandHelpers.cs (1)
122var dashboardInfo = await result.Connection!.GetDashboardInfoV2Async(cancellationToken);
Mcp\Tools\McpToolHelpers.cs (1)
21var dashboardInfo = await connection.GetDashboardInfoV2Async(cancellationToken).ConfigureAwait(false);
Aspire.Cli.Tests (2)
TestServices\TestAppHostAuxiliaryBackchannel.cs (2)
147public GetDashboardInfoResponse? DashboardInfoResponse { get; set; } 149public Task<GetDashboardInfoResponse?> GetDashboardInfoV2Async(CancellationToken cancellationToken = default)