5 implementations of ExecuteResourceCommandAsync
Aspire.Dashboard (1)
ResourceService\DashboardClient.cs (1)
543
public async Task<ResourceCommandResponseViewModel>
ExecuteResourceCommandAsync
(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken)
Aspire.Dashboard.Components.Tests (2)
Controls\ApplicationNameTests.cs (1)
79
public Task<ResourceCommandResponseViewModel>
ExecuteResourceCommandAsync
(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();
Shared\TestDashboardClient.cs (1)
41
public Task<ResourceCommandResponseViewModel>
ExecuteResourceCommandAsync
(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken)
Aspire.Dashboard.Tests (2)
Integration\Playwright\Infrastructure\MockDashboardClient.cs (1)
35
public Task<ResourceCommandResponseViewModel>
ExecuteResourceCommandAsync
(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();
ResourceOutgoingPeerResolverTests.cs (1)
227
public Task<ResourceCommandResponseViewModel>
ExecuteResourceCommandAsync
(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();
1 reference to ExecuteResourceCommandAsync
Aspire.Dashboard (1)
Model\DashboardCommandExecutor.cs (1)
140
response = await dashboardClient.
ExecuteResourceCommandAsync
(resource.Name, resource.ResourceType, command, CancellationToken.None).ConfigureAwait(false);