3 instantiations of ResourceCommandResponseViewModel
Aspire.Dashboard (2)
ResourceService\DashboardClient.cs (1)
569return new ResourceCommandResponseViewModel()
ResourceService\Partials.cs (1)
176return new ResourceCommandResponseViewModel()
Aspire.Dashboard.Components.Tests (1)
Pages\ConsoleLogsTests.cs (1)
407resourceCommandChannel.Writer.TryWrite(new ResourceCommandResponseViewModel
11 references to ResourceCommandResponseViewModel
Aspire.Dashboard (4)
Model\DashboardCommandExecutor.cs (1)
125ResourceCommandResponseViewModel response;
ResourceService\DashboardClient.cs (1)
543public async Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken)
ResourceService\IDashboardClient.cs (1)
56Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken);
ResourceService\Partials.cs (1)
174public ResourceCommandResponseViewModel ToViewModel()
Aspire.Dashboard.Components.Tests (5)
Controls\ApplicationNameTests.cs (1)
79public Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();
Pages\ConsoleLogsTests.cs (1)
363var resourceCommandChannel = Channel.CreateUnbounded<ResourceCommandResponseViewModel>();
Shared\TestDashboardClient.cs (3)
15private readonly Channel<ResourceCommandResponseViewModel>? _resourceCommandsChannel; 26Channel<ResourceCommandResponseViewModel>? resourceCommandsChannel = null, 41public Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken)
Aspire.Dashboard.Tests (2)
Integration\Playwright\Infrastructure\MockDashboardClient.cs (1)
35public Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();
ResourceOutgoingPeerResolverTests.cs (1)
227public Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();