3 implementations of IsReadOnly
Aspire.Dashboard (1)
ServiceClient\SelectedDashboardClient.cs (1)
13public bool IsReadOnly => dataSource.IsReadOnly;
Aspire.Dashboard.Components.Tests (1)
tests\Shared\TestDashboardClient.cs (1)
26public bool IsReadOnly { get; }
Aspire.Dashboard.Tests (1)
tests\Shared\TestDashboardClient.cs (1)
26public bool IsReadOnly { get; }
3 references to IsReadOnly
Aspire.Dashboard (3)
Components\Pages\ConsoleLogs.razor.cs (2)
528if (!DashboardClient.IsReadOnly && 570_consoleLogsWereLoaded = !DashboardClient.IsReadOnly || WereConsoleLogsLoaded(isAllSelected, selectedResource);
Model\ResourceMenuBuilder.cs (1)
314IsDisabled = _dashboardClient.IsReadOnly || command.State == CommandViewModelState.Disabled || isCommandExecuting(resource, command)