12 instantiations of DashboardUrlsState
Aspire.Cli.Tests (12)
Commands\PsCommandTests.cs (2)
114DashboardUrlsState = new DashboardUrlsState 209DashboardUrlsState = new DashboardUrlsState
Commands\PublishCommandPromptingIntegrationTests.cs (1)
814Task.FromResult(new DashboardUrlsState
Commands\RunCommandTests.cs (4)
403return Task.FromResult(new DashboardUrlsState 495appHostBackchannel.GetDashboardUrlsAsyncCallback = (ct) => Task.FromResult(new DashboardUrlsState 565appHostBackchannel.GetDashboardUrlsAsyncCallback = (ct) => Task.FromResult(new DashboardUrlsState 636appHostBackchannel.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
30 references to DashboardUrlsState
aspire (20)
Backchannel\AppHostAuxiliaryBackchannel.cs (4)
261public async Task<DashboardUrlsState?> GetDashboardUrlsAsync(CancellationToken cancellationToken = default) 269var dashboardUrls = await rpc.InvokeWithCancellationAsync<DashboardUrlsState?>( 450var 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); 379public async Task DisplayDashboardUrlsAsync(DashboardUrlsState dashboardUrls, CancellationToken cancellationToken)
Backchannel\IAppHostAuxiliaryBackchannel.cs (1)
54Task<DashboardUrlsState?> GetDashboardUrlsAsync(CancellationToken cancellationToken = default);
Commands\AppHostLauncher.cs (3)
215private record LaunchResult(Process? ChildProcess, IAppHostAuxiliaryBackchannel? Backchannel, DashboardUrlsState? DashboardUrls, bool ChildExitedEarly, int ChildExitCode); 259DashboardUrlsState? dashboardUrls = null; 330var dashboardUrls = result.DashboardUrls;
Commands\PsCommand.cs (1)
165var dashboardUrls = await connection.GetDashboardUrlsAsync(cancellationToken).ConfigureAwait(false);
Commands\RunCommand.cs (1)
263var dashboardUrls = await InteractionService.ShowStatusAsync(
Interaction\ExtensionInteractionService.cs (2)
20void DisplayDashboardUrls(DashboardUrlsState dashboardUrls); 339public void DisplayDashboardUrls(DashboardUrlsState dashboardUrls)
Mcp\Tools\ListResourcesTool.cs (1)
74var dashboardUrls = await dashboardUrlsTask.ConfigureAwait(false);
Aspire.Cli.Tests (10)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
813public Task<DashboardUrlsState> GetDashboardUrlsAsync(CancellationToken cancellationToken) =>
Projects\ExtensionGuestLauncherTests.cs (1)
150public void DisplayDashboardUrls(DashboardUrlsState dashboardUrls) => throw new NotImplementedException();
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; } 143public Task DisplayDashboardUrlsAsync(DashboardUrlsState dashboardUrls, CancellationToken cancellationToken)
TestServices\TestExtensionInteractionService.cs (2)
22public Action<DashboardUrlsState>? DisplayDashboardUrlsCallback { get; set; } 91public void DisplayDashboardUrls(DashboardUrlsState dashboardUrls)