4 implementations of IsAvailable
Aspire.Hosting (1)
InteractionService.cs (1)
36public bool IsAvailable
Aspire.Hosting.Azure.Tests (1)
tests\Shared\TestInteractionService.cs (1)
16public bool IsAvailable { get; set; } = true;
Aspire.Hosting.DevTunnels.Tests (1)
DevTunnelCliInstallationManagerTests.cs (1)
49public bool IsAvailable => true;
Aspire.Hosting.Tests (1)
tests\Shared\TestInteractionService.cs (1)
16public bool IsAvailable { get; set; } = true;
9 references to IsAvailable
Aspire.Hosting (5)
Dcp\DcpHost.cs (1)
338if (!_interactionService.IsAvailable)
Orchestrator\ParameterProcessor.cs (2)
50if (interactionService.IsAvailable && _unresolvedParameters.Count > 0) 189if (interactionService.IsAvailable && ex is MissingParameterValueException)
Pipelines\DistributedApplicationPipeline.cs (1)
68if (interactionService.IsAvailable)
VersionChecking\VersionCheckService.cs (1)
53if (!_interactionService.IsAvailable || _executionContext.IsPublishMode || _configuration.GetBool(KnownConfigNames.VersionCheckDisabled, defaultValue: false))
Aspire.Hosting.Azure (1)
Provisioning\Internal\RunModeProvisioningContextProvider.cs (1)
67if (!_interactionService.IsAvailable ||
Aspire.Hosting.DevTunnels (3)
DevTunnelLoginManager.cs (1)
52if (_interactionService.IsAvailable)
LoggedOutNotificationManager.cs (1)
13if (interactionService.IsAvailable)
RequiredCommandValidator.cs (1)
91if (_interactionService.IsAvailable == true)