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