6 implementations of IsEnabled
Aspire.Dashboard.Components.Tests (2)
Controls\ApplicationNameTests.cs (1)
52public bool IsEnabled => true;
Shared\TestDashboardClient.cs (1)
17public bool IsEnabled { get; }
Aspire.Dashboard.Tests (4)
Integration\DashboardClientAuthTests.cs (1)
166public bool IsEnabled => true;
Integration\Playwright\Infrastructure\MockDashboardClient.cs (2)
13public bool IsEnabled => true; 47public bool IsEnabled => _dashboardClientStatus.IsEnabled;
Model\DashboardClientTests.cs (1)
160public bool IsEnabled => true;
6 references to IsEnabled
Aspire.Dashboard (5)
DashboardWebApplication.cs (1)
350if (!client.IsEnabled)
Model\ResourceOutgoingPeerResolver.cs (1)
22if (!resourceService.IsEnabled)
ResourceService\DashboardClient.cs (2)
34/// will throw if <see cref="IDashboardClientStatus.IsEnabled"/> is <see langword="false"/>. Callers should 91if (!_dashboardClientStatus.IsEnabled)
ResourceService\IDashboardClientStatus.cs (1)
12/// Users of <see cref="IDashboardClient"/> client should check <see cref="IsEnabled"/> before calling
Aspire.Dashboard.Tests (1)
Integration\Playwright\Infrastructure\MockDashboardClient.cs (1)
47public bool IsEnabled => _dashboardClientStatus.IsEnabled;