11 instantiations of DashboardUrlsState
Aspire.Cli.Tests (11)
Commands\PsCommandTests.cs (1)
114DashboardUrlsState = new DashboardUrlsState
Commands\PublishCommandPromptingIntegrationTests.cs (1)
814Task.FromResult(new DashboardUrlsState
Commands\RunCommandTests.cs (4)
397return Task.FromResult(new DashboardUrlsState 494appHostBackchannel.GetDashboardUrlsAsyncCallback = (ct) => Task.FromResult(new DashboardUrlsState 564appHostBackchannel.GetDashboardUrlsAsyncCallback = (ct) => Task.FromResult(new DashboardUrlsState 635appHostBackchannel.GetDashboardUrlsAsyncCallback = (ct) => Task.FromResult(new DashboardUrlsState
Mcp\ListResourcesToolTests.cs (4)
35DashboardUrlsState = new DashboardUrlsState { BaseUrlWithLoginToken = "http://localhost:18888" } 80DashboardUrlsState = new DashboardUrlsState { BaseUrlWithLoginToken = "http://localhost:18888" } 116DashboardUrlsState = new DashboardUrlsState { BaseUrlWithLoginToken = "http://localhost:18888" } 157DashboardUrlsState = new DashboardUrlsState { BaseUrlWithLoginToken = "http://localhost:18888" }
TestServices\TestAppHostCliBackchannel.cs (1)
51new DashboardUrlsState
29 references to DashboardUrlsState
aspire (20)
Backchannel\AppHostAuxiliaryBackchannel.cs (4)
261public async Task<DashboardUrlsState?> GetDashboardUrlsAsync(CancellationToken cancellationToken = default) 269var dashboardUrls = await rpc.InvokeWithCancellationAsync<DashboardUrlsState?>( 447var urlsState = await GetDashboardUrlsAsync(cancellationToken).ConfigureAwait(false);
Backchannel\AppHostCliBackchannel.cs (4)
17Task<DashboardUrlsState> GetDashboardUrlsAsync(CancellationToken cancellationToken); 67public async Task<DashboardUrlsState> GetDashboardUrlsAsync(CancellationToken cancellationToken) 74var state = await rpc.InvokeWithCancellationAsync<DashboardUrlsState>(
Backchannel\BackchannelJsonSerializerContext.cs (1)
23[JsonSerializable(typeof(DashboardUrlsState))]
Backchannel\ExtensionBackchannel.cs (2)
32Task DisplayDashboardUrlsAsync(DashboardUrlsState dashboardUrls, CancellationToken cancellationToken); 378public async Task DisplayDashboardUrlsAsync(DashboardUrlsState dashboardUrls, CancellationToken cancellationToken)
Backchannel\IAppHostAuxiliaryBackchannel.cs (1)
54Task<DashboardUrlsState?> GetDashboardUrlsAsync(CancellationToken cancellationToken = default);
Commands\AppHostLauncher.cs (1)
324var dashboardUrls = await result.Backchannel.GetDashboardUrlsAsync(cancellationToken).ConfigureAwait(false);
Commands\DescribeCommand.cs (2)
152var dashboardUrls = await dashboardUrlsTask.ConfigureAwait(false); 190var dashboardUrls = await connection.GetDashboardUrlsAsync(cancellationToken).ConfigureAwait(false);
Commands\PsCommand.cs (1)
143var dashboardUrls = await connection.GetDashboardUrlsAsync(cancellationToken).ConfigureAwait(false);
Commands\RunCommand.cs (1)
264var dashboardUrls = await InteractionService.ShowStatusAsync(
Interaction\ExtensionInteractionService.cs (2)
20void DisplayDashboardUrls(DashboardUrlsState dashboardUrls); 272public void DisplayDashboardUrls(DashboardUrlsState dashboardUrls)
Mcp\Tools\ListResourcesTool.cs (1)
74var dashboardUrls = await dashboardUrlsTask.ConfigureAwait(false);
Aspire.Cli.Tests (9)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
813public Task<DashboardUrlsState> GetDashboardUrlsAsync(CancellationToken cancellationToken) =>
TestServices\TestAppHostAuxiliaryBackchannel.cs (2)
32public DashboardUrlsState? DashboardUrlsState { get; set; } 55public Task<DashboardUrlsState?> GetDashboardUrlsAsync(CancellationToken cancellationToken = default)
TestServices\TestAppHostCliBackchannel.cs (2)
15public Func<CancellationToken, Task<DashboardUrlsState>>? GetDashboardUrlsAsyncCallback { get; set; } 45public Task<DashboardUrlsState> GetDashboardUrlsAsync(CancellationToken cancellationToken)
TestServices\TestExtensionBackchannel.cs (2)
41public Func<DashboardUrlsState, Task>? DisplayDashboardUrlsAsyncCallback { get; set; } 140public Task DisplayDashboardUrlsAsync(DashboardUrlsState dashboardUrls, CancellationToken cancellationToken)
TestServices\TestExtensionInteractionService.cs (2)
21public Action<DashboardUrlsState>? DisplayDashboardUrlsCallback { get; set; } 80public void DisplayDashboardUrls(DashboardUrlsState dashboardUrls)