3 instantiations of ResourceCommandResponseViewModel
Aspire.Dashboard (2)
ServiceClient\DashboardClient.cs (1)
745return new ResourceCommandResponseViewModel()
ServiceClient\Partials.cs (1)
177return new ResourceCommandResponseViewModel()
Aspire.Dashboard.Components.Tests (1)
Pages\ConsoleLogsTests.cs (1)
556resourceCommandChannel.Writer.TryWrite(new ResourceCommandResponseViewModel
11 references to ResourceCommandResponseViewModel
Aspire.Dashboard (4)
Model\DashboardCommandExecutor.cs (1)
125ResourceCommandResponseViewModel response;
ServiceClient\DashboardClient.cs (1)
719public async Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken)
ServiceClient\IDashboardClient.cs (1)
62Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken);
ServiceClient\Partials.cs (1)
175public ResourceCommandResponseViewModel ToViewModel()
Aspire.Dashboard.Components.Tests (5)
Controls\ApplicationNameTests.cs (1)
80public Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();
Pages\ConsoleLogsTests.cs (1)
512var resourceCommandChannel = Channel.CreateUnbounded<ResourceCommandResponseViewModel>();
Shared\TestDashboardClient.cs (3)
17private readonly Channel<ResourceCommandResponseViewModel>? _resourceCommandsChannel; 30Channel<ResourceCommandResponseViewModel>? resourceCommandsChannel = null, 48public Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken)
Aspire.Dashboard.Tests (2)
Integration\Playwright\Infrastructure\MockDashboardClient.cs (1)
36public Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();
ResourceOutgoingPeerResolverTests.cs (1)
228public Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();