3 instantiations of ResourceCommandResponseViewModel
Aspire.Dashboard (2)
ResourceService\DashboardClient.cs (1)
575return new ResourceCommandResponseViewModel()
ResourceService\Partials.cs (1)
193return new ResourceCommandResponseViewModel()
Aspire.Dashboard.Components.Tests (1)
Pages\ConsoleLogsTests.cs (1)
403resourceCommandChannel.Writer.TryWrite(new ResourceCommandResponseViewModel
11 references to ResourceCommandResponseViewModel
Aspire.Dashboard (4)
Model\DashboardCommandExecutor.cs (1)
100ResourceCommandResponseViewModel response;
ResourceService\DashboardClient.cs (1)
549public async Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken)
ResourceService\IDashboardClient.cs (1)
47Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken);
ResourceService\Partials.cs (1)
191public ResourceCommandResponseViewModel ToViewModel()
Aspire.Dashboard.Components.Tests (5)
Controls\ApplicationNameTests.cs (1)
81public Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();
Pages\ConsoleLogsTests.cs (1)
359var 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)
51public Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();
ResourceOutgoingPeerResolverTests.cs (1)
206public Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();