16 references to Hidden
Aspire.Hosting (3)
ApplicationModel\CommandsConfigurationExtensions.cs (2)
42
return ResourceCommandState.
Hidden
;
75
return ResourceCommandState.
Hidden
;
Dashboard\proto\Partials.cs (1)
136
Hosting.ApplicationModel.ResourceCommandState.
Hidden
=> ResourceCommandState.Hidden,
Aspire.Hosting.Tests (13)
ResourceCommandAnnotationTests.cs (11)
13
[InlineData(KnownResourceCommands.StartCommand, "Stopping", ResourceCommandState.
Hidden
)]
14
[InlineData(KnownResourceCommands.StartCommand, "Running", ResourceCommandState.
Hidden
)]
23
[InlineData(KnownResourceCommands.StopCommand, "Starting", ResourceCommandState.
Hidden
)]
26
[InlineData(KnownResourceCommands.StopCommand, "Exited", ResourceCommandState.
Hidden
)]
27
[InlineData(KnownResourceCommands.StopCommand, "Finished", ResourceCommandState.
Hidden
)]
28
[InlineData(KnownResourceCommands.StopCommand, "FailedToStart", ResourceCommandState.
Hidden
)]
29
[InlineData(KnownResourceCommands.StopCommand, "Unknown", ResourceCommandState.
Hidden
)]
30
[InlineData(KnownResourceCommands.StopCommand, "Waiting", ResourceCommandState.
Hidden
)]
31
[InlineData(KnownResourceCommands.StopCommand, "RuntimeUnhealthy", ResourceCommandState.
Hidden
)]
32
[InlineData(KnownResourceCommands.StopCommand, "", ResourceCommandState.
Hidden
)]
33
[InlineData(KnownResourceCommands.StopCommand, null, ResourceCommandState.
Hidden
)]
WithHttpCommandTests.cs (2)
444
return enableCommand ? ResourceCommandState.Enabled : ResourceCommandState.
Hidden
;
476
Assert.Equal(ResourceCommandState.
Hidden
, commandState);