13 writes to IsHidden
Aspire.Hosting (3)
ApplicationModel\ResourceNotificationService.cs (1)
1214
return previousState with {
IsHidden
= isHidden };
Lifecycle\TerminalHostFailureDiagnosticService.cs (1)
109
await notifications.PublishUpdateAsync(host, s => s with {
IsHidden
= false })
TerminalResourceBuilderExtensions.cs (1)
396
IsHidden
= !options.ShowTerminalHost,
Aspire.Hosting.Azure (1)
AzureEnvironmentResourceExtensions.cs (1)
87
IsHidden
= true // hidden from the dashboard
Aspire.Hosting.Azure.Sandboxes (1)
AzureSandboxCleanupResource.cs (1)
37
IsHidden
= true
Aspire.Hosting.Blazor (1)
BrowserDebuggerHelper.cs (1)
95
IsHidden
= true
Aspire.Hosting.Tests (7)
Backchannel\AuxiliaryBackchannelRpcTargetTests.cs (1)
1947
IsHidden
= true
Lifecycle\TerminalHostFailureDiagnosticServiceTests.cs (6)
35
IsHidden
= true,
75
IsHidden
= true,
106
IsHidden
= true,
146
IsHidden
= true,
184
IsHidden
= true,
199
IsHidden
= true,
17 references to IsHidden
Aspire.Hosting (7)
ApplicationModel\CustomResourceSnapshot.cs (2)
190
IsHidden
!= other.
IsHidden
||
ApplicationModel\ResourceNotificationService.cs (2)
931
newState.
IsHidden
,
1211
_ => previousState.
IsHidden
Backchannel\AuxiliaryBackchannelRpcTarget.cs (2)
1193
IsHidden = snapshot.
IsHidden
,
1742
return notificationService.TryGetCurrentState(resourceName, out var resourceEvent) && resourceEvent.Snapshot.
IsHidden
;
Dashboard\DashboardServiceData.cs (1)
87
IsHidden = snapshot.
IsHidden
,
Aspire.Hosting.Blazor.Tests (1)
WithBlazorAppTests.cs (1)
206
Assert.True(snapshotAnnotation.InitialSnapshot.
IsHidden
);
Aspire.Hosting.Tests (8)
AddConnectionStringTests.cs (1)
65
Assert.False(state.
IsHidden
);
AddParameterTests.cs (1)
36
Assert.False(state.
IsHidden
);
Dashboard\DashboardResourceTests.cs (1)
62
Assert.False(initialSnapshot.InitialSnapshot.
IsHidden
);
Lifecycle\TerminalHostFailureDiagnosticServiceTests.cs (2)
115
Assert.True(current.
IsHidden
);
252
if (evt.Resource == host && !evt.Snapshot.
IsHidden
)
ResourceNotificationTests.cs (1)
1416
return resourceEvent!.Snapshot.
IsHidden
;
WithTerminalTests.cs (2)
246
Assert.True(snapshot.InitialSnapshot.
IsHidden
,
266
Assert.False(snapshot.InitialSnapshot.
IsHidden
,
Aspire.Playground.Tests (1)
Infrastructure\DistributedApplicationExtensions.cs (1)
107
return Task.WhenAll(applicationModel.Resources.Select(r => app.ResourceNotifications.WaitForResourceAsync(r.Name, r => targetStates?.Contains(r.Snapshot.State?.Text, StringComparer.OrdinalIgnoreCase) is true || r.Snapshot.
IsHidden
, cancellationToken)));