3 implementations of IsAvailable
Aspire.Hosting (1)
InteractionService.cs (1)
33public bool IsAvailable => !_distributedApplicationOptions.DisableDashboard;
Aspire.Hosting.Azure.Tests (1)
tests\Shared\TestInteractionService.cs (1)
16public bool IsAvailable { get; set; } = true;
Aspire.Hosting.Tests (1)
tests\Shared\TestInteractionService.cs (1)
16public bool IsAvailable { get; set; } = true;
7 references to IsAvailable
Aspire.Hosting (4)
Dcp\DcpHost.cs (1)
378if (!_interactionService.IsAvailable)
Orchestrator\ParameterProcessor.cs (2)
47if (interactionService.IsAvailable && _unresolvedParameters.Count > 0) 91if (interactionService.IsAvailable && ex is MissingParameterValueException)
VersionChecking\VersionCheckService.cs (1)
53if (!_interactionService.IsAvailable || _executionContext.IsPublishMode || _configuration.GetBool(KnownConfigNames.VersionCheckDisabled, defaultValue: false))
Aspire.Hosting.Azure (1)
Provisioning\Internal\RunModeProvisioningContextProvider.cs (1)
66if (!_interactionService.IsAvailable ||
Aspire.Hosting.DevTunnels (2)
DevTunnelLoginManager.cs (1)
52if (_interactionService.IsAvailable)
RequiredCommandValidator.cs (1)
69if (_interactionService.IsAvailable == true)