1 write to Name
Aspire.Dashboard (1)
Model\ResourceViewModel.cs (1)
303
Name
= name;
11 references to Name
Aspire.Dashboard (8)
Components\Pages\ConsoleLogs.razor.cs (1)
797
(resource, command) => DashboardCommandExecutor.IsExecuting(resource.Name, command.
Name
),
Components\Pages\Resources.razor.cs (1)
659
(resource, command) => DashboardCommandExecutor.IsExecuting(resource.Name, command.
Name
),
Model\DashboardCommandExecutor.cs (2)
38
var executingCommandKey = (resource.Name, command.
Name
);
48
{ TelemetryPropertyKeys.CommandName, new AspireTelemetryProperty(TelemetryPropertyValues.GetCommandNameTelemetryValue(command.
Name
)) },
Model\TelemetryExportService.cs (2)
771
.OrderBy(c => c.
Name
)
773
c => c.
Name
,
ServiceClient\DashboardClient.cs (2)
1041
CommandName = command.
Name
,
1090
_logger.LogError(ex, "Error executing command \"{CommandName}\" on resource \"{ResourceName}\": {StatusCode}", command.
Name
, resourceName, ex.StatusCode);
Aspire.Dashboard.Components.Tests (2)
Controls\ResourceDetailsTests.cs (2)
769
Assert.Equal(CommandViewModel.SetParameterCommand, capturedCommand!.
Name
);
807
currentResource.Name == resource.Name && command.
Name
== CommandViewModel.SetParameterCommand);
Aspire.Dashboard.Tests (1)
Model\SqliteResourceRepositoryTests.cs (1)
443
Assert.Equal("configure", command.
Name
);