5 implementations of ExecuteResourceCommandAsync
Aspire.Dashboard (1)
ServiceClient\DashboardClient.cs (1)
719
public async Task<ResourceCommandResponseViewModel>
ExecuteResourceCommandAsync
(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken)
Aspire.Dashboard.Components.Tests (2)
Controls\ApplicationNameTests.cs (1)
80
public Task<ResourceCommandResponseViewModel>
ExecuteResourceCommandAsync
(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();
Shared\TestDashboardClient.cs (1)
48
public Task<ResourceCommandResponseViewModel>
ExecuteResourceCommandAsync
(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken)
Aspire.Dashboard.Tests (2)
Integration\Playwright\Infrastructure\MockDashboardClient.cs (1)
36
public Task<ResourceCommandResponseViewModel>
ExecuteResourceCommandAsync
(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();
ResourceOutgoingPeerResolverTests.cs (1)
228
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);