11 instantiations of LaunchArgument
Aspire.Dashboard (3)
Model\ResourceSourceViewModel.cs (3)
57.Select((arg, i) => new LaunchArgument(arg, IsShown: !areArgumentsSensitive[i])) 68return new CommandLineInfo(Arguments: launchArguments.Select(arg => new LaunchArgument(arg, true)).ToList(), ArgumentsString: argumentsString, TooltipString: argumentsString); 73var arguments = executableArguments.IsDefaultOrEmpty ? [] : executableArguments.Select(arg => new LaunchArgument(arg, true)).ToList();
Aspire.Dashboard.Tests (8)
Model\ResourceSourceViewModelTests.cs (8)
79contentAfterValue: [new LaunchArgument("arg2", true)], 96contentAfterValue: [new LaunchArgument("arg2", true), new LaunchArgument("--key", true), new LaunchArgument("secret", false), new LaunchArgument("secret2", false), new LaunchArgument("notsecret", true)], 128contentAfterValue: [new LaunchArgument("arg1", true), new LaunchArgument("arg2", true)],
6 references to LaunchArgument
Aspire.Dashboard (6)
Components_Pages_Resources_razor.g.cs (1)
2193), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.List<global::Aspire.Dashboard.Model.LaunchArgument>>(
Components_ResourcesGridColumns_SourceColumnDisplay_razor.g.cs (2)
340foreach (var launchArgument in ContentAfterValue) 412public required List<LaunchArgument>? ContentAfterValue { get; set; }
Model\ResourceSourceViewModel.cs (3)
8public class ResourceSourceViewModel(string value, List<LaunchArgument>? contentAfterValue, string valueToVisualize, string tooltip) 11public List<LaunchArgument>? ContentAfterValue { get; } = contentAfterValue; 90private record CommandLineInfo(List<LaunchArgument> Arguments, string ArgumentsString, string TooltipString);