47 instantiations of SelectViewModel
Aspire.Dashboard (41)
Components\Dialogs\FilterDialog.razor.cs (5)
18
new
SelectViewModel
<FilterCondition> { Id = condition, Name = FieldTelemetryFilter.ConditionToString(condition, FilterLoc) };
54
var knownFields = Content.KnownKeys.Select(p => new
SelectViewModel
<string> { Id = p, Name = FieldTelemetryFilter.ResolveFieldName(p) }).ToList();
55
var customFields = Content.PropertyKeys.Select(p => new
SelectViewModel
<string> { Id = p, Name = FieldTelemetryFilter.ResolveFieldName(p) }).ToList();
62
new
SelectViewModel
<string> { Id = null, Name = "-" },
97
.Select(v => new
SelectViewModel
<FieldValue> { Id = v, Name = v.Value })
Components\Dialogs\TextVisualizerDialog.razor.cs (3)
52
new
SelectViewModel
<string> { Id = DashboardUIHelpers.PlaintextFormat, Name = Loc[nameof(Resources.Dialogs.TextVisualizerDialogPlaintextFormat)] },
53
new
SelectViewModel
<string> { Id = DashboardUIHelpers.JsonFormat, Name = Loc[nameof(Resources.Dialogs.TextVisualizerDialogJsonFormat)] },
54
new
SelectViewModel
<string> { Id = DashboardUIHelpers.XmlFormat, Name = Loc[nameof(Resources.Dialogs.TextVisualizerDialogXmlFormat)] }
Components\Pages\ConsoleLogs.razor.cs (3)
184
_allResource =
new
() { Id = null, Name = ControlsStringsLoc[nameof(ControlsStrings.LabelAll)] };
675
builder.Add(new
SelectViewModel
<ResourceTypeDetails>
713
return new
SelectViewModel
<ResourceTypeDetails>
Components\Pages\Metrics.razor.cs (9)
86
new
() { Name = Loc[nameof(Dashboard.Resources.Metrics.MetricsLastOneMinute)], Id = TimeSpan.FromMinutes(1) },
87
new
() { Name = Loc[nameof(Dashboard.Resources.Metrics.MetricsLastFiveMinutes)], Id = TimeSpan.FromMinutes(5) },
88
new
() { Name = Loc[nameof(Dashboard.Resources.Metrics.MetricsLastFifteenMinutes)], Id = TimeSpan.FromMinutes(15) },
89
new
() { Name = Loc[nameof(Dashboard.Resources.Metrics.MetricsLastThirtyMinutes)], Id = TimeSpan.FromMinutes(30) },
90
new
() { Name = Loc[nameof(Dashboard.Resources.Metrics.MetricsLastHour)], Id = TimeSpan.FromHours(1) },
91
new
() { Name = Loc[nameof(Dashboard.Resources.Metrics.MetricsLastThreeHours)], Id = TimeSpan.FromHours(3) },
92
new
() { Name = Loc[nameof(Dashboard.Resources.Metrics.MetricsLastSixHours)], Id = TimeSpan.FromHours(6) },
93
new
() { Name = Loc[nameof(Dashboard.Resources.Metrics.MetricsLastTwelveHours)], Id = TimeSpan.FromHours(12) },
96
_selectResource = new
SelectViewModel
<ResourceTypeDetails>
Components\Pages\StructuredLogs.razor.cs (8)
199
_allResource =
new
()
207
new
SelectViewModel
<LogLevel?> { Id = null, Name = ControlsStringsLoc[nameof(Dashboard.Resources.ControlsStrings.LabelAll)] },
208
new
SelectViewModel
<LogLevel?> { Id = LogLevel.Trace, Name = "Trace" },
209
new
SelectViewModel
<LogLevel?> { Id = LogLevel.Debug, Name = "Debug" },
210
new
SelectViewModel
<LogLevel?> { Id = LogLevel.Information, Name = "Information" },
211
new
SelectViewModel
<LogLevel?> { Id = LogLevel.Warning, Name = "Warning" },
212
new
SelectViewModel
<LogLevel?> { Id = LogLevel.Error, Name = "Error" },
213
new
SelectViewModel
<LogLevel?> { Id = LogLevel.Critical, Name = "Critical" },
Components\Pages\Traces.razor.cs (1)
182
_allResource = new
SelectViewModel
<ResourceTypeDetails> { Id = null, Name = ControlsStringsLoc[name: nameof(ControlsStrings.LabelAll)] };
Model\Interaction\InputViewModel.cs (1)
44
.Select(option => new
SelectViewModel
<string> { Id = option.Key, Name = option.Value, })
Model\Otlp\ResourcesSelectHelpers.cs (3)
93
selectViewModels.Add(new
SelectViewModel
<ResourceTypeDetails>
103
selectViewModels.Add(new
SelectViewModel
<ResourceTypeDetails>
111
new
SelectViewModel
<ResourceTypeDetails>
Model\SpanType.cs (8)
68
new
() { Id = null, Name = loc[nameof(ControlsStrings.LabelAll)] },
69
new
() { Id = Http, Name = loc[nameof(ControlsStrings.SpanTypeHttp)] },
70
new
() { Id = Database, Name = loc[nameof(ControlsStrings.SpanTypeDatabase)] },
71
new
() { Id = Messaging, Name = loc[nameof(ControlsStrings.SpanTypeMessaging)] },
72
new
() { Id = Rpc, Name = loc[nameof(ControlsStrings.SpanTypeRpc)] },
73
new
() { Id = GenAI, Name = loc[nameof(ControlsStrings.SpanTypeGenAI)] },
74
new
() { Id = Cloud, Name = loc[nameof(ControlsStrings.SpanTypeCloud)] },
75
new
() { Id = Other, Name = loc[nameof(ControlsStrings.LabelOther)] },
Aspire.Dashboard.Tests (6)
ConsoleLogsTests\CreateResourceSelectModelsTests.cs (4)
27
var allResourceViewModel = new
SelectViewModel
<ResourceTypeDetails> { Id = null, Name = allResourceText };
70
var allResourceViewModel = new
SelectViewModel
<ResourceTypeDetails> { Id = null, Name = allResourceText };
151
var allResourceViewModel = new
SelectViewModel
<ResourceTypeDetails> { Id = null, Name = allResourceText };
184
var allResourceViewModel = new
SelectViewModel
<ResourceTypeDetails> { Id = null, Name = allResourceText };
Model\ApplicationsSelectHelpersTests.cs (2)
177
new
SelectViewModel
<ResourceTypeDetails>() { Name = "test", Id = ResourceTypeDetails.CreateSingleton("test-abc", "test") },
178
new
SelectViewModel
<ResourceTypeDetails>() { Name = "test", Id = ResourceTypeDetails.CreateSingleton("test-def", "test") }
313 references to SelectViewModel
Aspire.Dashboard (293)
Components\Controls\ClearSignalsButton.razor.cs (1)
24
public required
SelectViewModel
<ResourceTypeDetails> SelectedResource { get; set; }
Components\Controls\LogLevelSelect.razor.cs (3)
12
public required List<
SelectViewModel
<LogLevel?>> LogLevels { get; set; }
15
public required
SelectViewModel
<LogLevel?> LogLevel { get; set; }
18
public EventCallback<
SelectViewModel
<LogLevel?>> LogLevelChanged { get; set; }
Components\Controls\ResourceSelect.razor.cs (3)
20
public IEnumerable<
SelectViewModel
<ResourceTypeDetails>>? Resources { get; set; }
23
public
SelectViewModel
<ResourceTypeDetails>? SelectedResource { get; set; }
26
public EventCallback<
SelectViewModel
<ResourceTypeDetails>> SelectedResourceChanged { get; set; }
Components\Controls\SignalsActionsDisplay.razor.cs (1)
28
public required
SelectViewModel
<ResourceTypeDetails> SelectedResource { get; set; }
Components\Controls\SpanTypeSelect.razor.cs (3)
13
public required List<
SelectViewModel
<SpanType>> SpanTypes { get; set; }
16
public required
SelectViewModel
<SpanType> SpanType { get; set; }
19
public EventCallback<
SelectViewModel
<SpanType>> SpanTypeChanged { get; set; }
Components\Dialogs\FilterDialog.razor.cs (6)
15
private List<
SelectViewModel
<FilterCondition>> _filterConditions = null!;
17
private
SelectViewModel
<FilterCondition> CreateFilterSelectViewModel(FilterCondition condition) =>
30
private List<
SelectViewModel
<string>> _parameters = default!;
31
private List<
SelectViewModel
<FieldValue>> _filteredValues = default!;
32
private List<
SelectViewModel
<FieldValue>>? _allValues;
127
IEnumerable<
SelectViewModel
<FieldValue>> newValues = _allValues;
Components\Dialogs\InteractionsInputDialog.razor.cs (1)
95
else if (firstInputElement is FluentInputBase<
SelectViewModel
<string>> selectInput)
Components\Dialogs\TextVisualizerDialog.razor.cs (1)
17
private List<
SelectViewModel
<string>> _options = null!;
Components\Pages\ConsoleLogs.razor.cs (10)
149
private ImmutableList<
SelectViewModel
<ResourceTypeDetails>>? _resources;
161
private
SelectViewModel
<ResourceTypeDetails> _allResource = null!;
347
private
SelectViewModel
<ResourceTypeDetails> GetSelectedOption()
655
internal static ImmutableList<
SelectViewModel
<ResourceTypeDetails>> GetConsoleLogResourceSelectViewModels(
657
SelectViewModel
<ResourceTypeDetails> allResourceViewModel,
660
out
SelectViewModel
<ResourceTypeDetails>? optionToSelect)
662
var builder = ImmutableList.CreateBuilder<
SelectViewModel
<ResourceTypeDetails>>();
707
SelectViewModel
<ResourceTypeDetails> ToOption(ResourceViewModel resource, bool isReplica, string resourceName)
740
_resources = GetConsoleLogResourceSelectViewModels(_resourceByName, _allResource, Loc[nameof(Dashboard.Resources.ConsoleLogs.ConsoleLogsUnknownState)], _showHiddenResources, out
var
optionToSelect);
1030
public required
SelectViewModel
<ResourceTypeDetails> SelectedResource { get; set; }
Components\Pages\Metrics.razor.cs (7)
21
private
SelectViewModel
<ResourceTypeDetails> _selectResource = null!;
22
private List<
SelectViewModel
<TimeSpan>> _durations = null!;
29
private List<
SelectViewModel
<ResourceTypeDetails>> _resourceViewModels = default!;
84
_durations = new List<
SelectViewModel
<TimeSpan>>
169
SelectViewModel
<ResourceTypeDetails>? TryGetSingleResource()
260
public required
SelectViewModel
<ResourceTypeDetails> SelectedResource { get; set; }
261
public
SelectViewModel
<TimeSpan> SelectedDuration { get; set; } = null!;
Components\Pages\StructuredLogs.razor.cs (6)
36
private
SelectViewModel
<ResourceTypeDetails> _allResource = default!;
42
private List<
SelectViewModel
<ResourceTypeDetails>> _resourceViewModels = default!;
43
private List<
SelectViewModel
<LogLevel?>> _logLevels = default!;
205
_logLevels = new List<
SelectViewModel
<LogLevel?>>
637
public required
SelectViewModel
<ResourceTypeDetails> SelectedResource { get; set; }
638
public
SelectViewModel
<LogLevel?> SelectedLogLevel { get; set; } = default!;
Components\Pages\TraceDetail.razor.cs (2)
50
private List<
SelectViewModel
<SpanType>> _spanTypes = default!;
51
private
SelectViewModel
<SpanType> _selectedSpanType = default!;
Components\Pages\Traces.razor.cs (5)
34
private
SelectViewModel
<ResourceTypeDetails> _allResource = null!;
39
private List<
SelectViewModel
<SpanType>> _spanTypes = default!;
41
private List<
SelectViewModel
<ResourceTypeDetails>> _resourceViewModels = default!;
454
public required
SelectViewModel
<ResourceTypeDetails> SelectedResource { get; set; }
455
public required
SelectViewModel
<SpanType> SelectedSpanType { get; set; }
Components_Controls_LogLevelSelect_razor.g.cs (37)
290
SelectViewModel
<LogLevel?>
296
__builder.AddComponentParameter(7, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
313
__builder.AddComponentParameter(8, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
321
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.IEnumerable<
SelectViewModel
<LogLevel?>>>(
330
__builder.AddComponentParameter(9, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
347
__builder.AddComponentParameter(10, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
355
), (global::System.Func<
SelectViewModel
<LogLevel?>, global::System.String>)(
364
__builder.AddComponentParameter(11, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
373
__builder.AddComponentParameter(12, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
382
__builder.AddComponentParameter(13, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
408
__builder.AddComponentParameter(15, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
416
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<
SelectViewModel
<LogLevel?>>(
425
__builder.AddComponentParameter(16, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.SelectedOptionChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<
SelectViewModel
<LogLevel?>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<
SelectViewModel
<LogLevel?>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(callback: __value => { LogLevel = __value; return global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(callback:
434
__builder.AddComponentParameter(17, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.SelectedOptionExpression), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Linq.Expressions.Expression<global::System.Func<
SelectViewModel
<LogLevel?>>>>(() => LogLevel));
435
_ = nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
459
SelectViewModel
<LogLevel?>
465
__builder.AddComponentParameter(20, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
482
__builder.AddComponentParameter(21, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
490
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.IEnumerable<
SelectViewModel
<LogLevel?>>>(
499
__builder.AddComponentParameter(22, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
516
__builder.AddComponentParameter(23, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
524
), (global::System.Func<
SelectViewModel
<LogLevel?>, global::System.String>)(
533
__builder.AddComponentParameter(24, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
550
__builder.AddComponentParameter(25, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
559
__builder.AddComponentParameter(26, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
568
__builder.AddComponentParameter(27, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
594
__builder.AddComponentParameter(29, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
602
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<
SelectViewModel
<LogLevel?>>(
611
__builder.AddComponentParameter(30, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.SelectedOptionChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<
SelectViewModel
<LogLevel?>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<
SelectViewModel
<LogLevel?>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(callback: __value => { LogLevel = __value; return global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(callback:
620
__builder.AddComponentParameter(31, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.SelectedOptionExpression), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Linq.Expressions.Expression<global::System.Func<
SelectViewModel
<LogLevel?>>>>(() => LogLevel));
621
_ = nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<LogLevel?>>.
Components_Controls_ResourceSelect_razor.g.cs (2)
347
, out
var
__typeInferenceArg_0___arg10, global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(callback: __value => { SelectedResource = __value; return global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(callback:
366
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>(
Components_Controls_ResourceSelectOptionTemplate_razor.g.cs (1)
419
public required
SelectViewModel
<ResourceTypeDetails> ViewModel { get; set; }
Components_Controls_SignalsActionsDisplay_razor.g.cs (2)
258
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>(
381
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>(
Components_Controls_SpanTypeSelect_razor.g.cs (37)
290
SelectViewModel
<SpanType>
296
__builder.AddComponentParameter(7, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
313
__builder.AddComponentParameter(8, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
321
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.IEnumerable<
SelectViewModel
<SpanType>>>(
330
__builder.AddComponentParameter(9, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
347
__builder.AddComponentParameter(10, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
355
), (global::System.Func<
SelectViewModel
<SpanType>, global::System.String>)(
364
__builder.AddComponentParameter(11, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
373
__builder.AddComponentParameter(12, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
382
__builder.AddComponentParameter(13, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
408
__builder.AddComponentParameter(15, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
416
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<
SelectViewModel
<SpanType>>(
425
__builder.AddComponentParameter(16, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.SelectedOptionChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<
SelectViewModel
<SpanType>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<
SelectViewModel
<SpanType>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(callback: __value => { SpanType = __value; return global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(callback:
434
__builder.AddComponentParameter(17, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.SelectedOptionExpression), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Linq.Expressions.Expression<global::System.Func<
SelectViewModel
<SpanType>>>>(() => SpanType));
435
_ = nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
459
SelectViewModel
<SpanType>
465
__builder.AddComponentParameter(20, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
482
__builder.AddComponentParameter(21, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
490
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.IEnumerable<
SelectViewModel
<SpanType>>>(
499
__builder.AddComponentParameter(22, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
516
__builder.AddComponentParameter(23, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
524
), (global::System.Func<
SelectViewModel
<SpanType>, global::System.String>)(
533
__builder.AddComponentParameter(24, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
550
__builder.AddComponentParameter(25, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
559
__builder.AddComponentParameter(26, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
568
__builder.AddComponentParameter(27, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
594
__builder.AddComponentParameter(29, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
602
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<
SelectViewModel
<SpanType>>(
611
__builder.AddComponentParameter(30, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.SelectedOptionChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<
SelectViewModel
<SpanType>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<
SelectViewModel
<SpanType>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(callback: __value => { SpanType = __value; return global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(callback:
620
__builder.AddComponentParameter(31, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.SelectedOptionExpression), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Linq.Expressions.Expression<global::System.Func<
SelectViewModel
<SpanType>>>>(() => SpanType));
621
_ = nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<SpanType>>.
Components_Dialogs_FilterDialog_razor.g.cs (54)
292
SelectViewModel
<string>
298
__builder3.AddComponentParameter(14, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
315
__builder3.AddComponentParameter(15, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
332
__builder3.AddComponentParameter(16, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
340
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.IEnumerable<
SelectViewModel
<string>>>(
349
__builder3.AddComponentParameter(17, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
358
__builder3.AddComponentParameter(18, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
367
__builder3.AddComponentParameter(19, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
375
), (global::System.Func<
SelectViewModel
<string>, global::System.String>)(
384
__builder3.AddComponentParameter(20, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
392
), (global::System.Func<
SelectViewModel
<string>, global::System.Boolean>)(
401
__builder3.AddComponentParameter(21, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
409
), (global::System.Func<
SelectViewModel
<string>, global::System.String>)(
418
__builder3.AddComponentParameter(22, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
426
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<
SelectViewModel
<string>>(
435
__builder3.AddComponentParameter(23, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.SelectedOptionChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<
SelectViewModel
<string>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<
SelectViewModel
<string>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(callback: __value => { _formModel.Parameter = __value; return global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(callback:
444
__builder3.AddComponentParameter(24, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.SelectedOptionExpression), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Linq.Expressions.Expression<global::System.Func<
SelectViewModel
<string>>>>(() => _formModel.Parameter));
445
_ = nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
463
SelectViewModel
<FilterCondition>
469
__builder3.AddComponentParameter(30, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<FilterCondition>>.
477
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.IEnumerable<
SelectViewModel
<FilterCondition>>>(
486
__builder3.AddComponentParameter(31, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<FilterCondition>>.
503
__builder3.AddComponentParameter(32, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<FilterCondition>>.
511
), (global::System.Func<
SelectViewModel
<FilterCondition>, global::System.String>)(
520
__builder3.AddComponentParameter(33, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<FilterCondition>>.
529
__builder3.AddComponentParameter(34, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<FilterCondition>>.
537
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<
SelectViewModel
<FilterCondition>>(
546
__builder3.AddComponentParameter(35, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<FilterCondition>>.SelectedOptionChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<
SelectViewModel
<FilterCondition>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<
SelectViewModel
<FilterCondition>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, __value => _formModel.Condition = __value, _formModel.Condition))));
547
__builder3.AddComponentParameter(36, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<FilterCondition>>.SelectedOptionExpression), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Linq.Expressions.Expression<global::System.Func<
SelectViewModel
<FilterCondition>>>>(() => _formModel.Condition));
557
SelectViewModel
<FieldValue>
563
__builder3.AddComponentParameter(42, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<FieldValue>>.
571
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.IEnumerable<
SelectViewModel
<FieldValue>>>(
580
__builder3.AddComponentParameter(43, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<FieldValue>>.
589
__builder3.AddComponentParameter(44, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<FieldValue>>.
598
__builder3.AddComponentParameter(45, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<FieldValue>>.
606
), (global::System.Func<
SelectViewModel
<FieldValue>, global::System.String>)(
615
__builder3.AddComponentParameter(46, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<FieldValue>>.
623
), (global::System.Func<
SelectViewModel
<FieldValue>, global::System.String>)(
632
__builder3.AddComponentParameter(47, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<FieldValue>>.
640
), (global::System.Func<
SelectViewModel
<FieldValue>, global::System.String>)(
649
__builder3.AddComponentParameter(48, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<FieldValue>>.
666
__builder3.AddComponentParameter(49, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<FieldValue>>.
683
__builder3.AddComponentParameter(50, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<FieldValue>>.
700
__builder3.AddComponentParameter(51, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<FieldValue>>.
717
__builder3.AddComponentParameter(52, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<FieldValue>>.ValueChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<global::System.String>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<global::System.String>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(callback: __value => { _formModel.Value = __value; return global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(callback:
726
__builder3.AddComponentParameter(53, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<FieldValue>>.ValueExpression), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Linq.Expressions.Expression<global::System.Func<global::System.String>>>(() => _formModel.Value));
727
_ = nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<FieldValue>>.
736
__builder3.AddAttribute(54, "OptionTemplate", (global::Microsoft.AspNetCore.Components.RenderFragment<
SelectViewModel
<FieldValue>>)((optionContext) => (__builder4) => {
Components_Dialogs_InteractionsInputDialog_razor.g.cs (39)
956
SelectViewModel
<string>
962
__builder5.AddComponentParameter(69, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
979
__builder5.AddComponentParameter(70, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
996
__builder5.AddComponentParameter(71, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
1004
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.IEnumerable<
SelectViewModel
<string>>>(
1013
__builder5.AddComponentParameter(72, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
1021
), (global::System.Func<
SelectViewModel
<string>, global::System.String>)(
1030
__builder5.AddComponentParameter(73, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
1038
), (global::System.Func<
SelectViewModel
<string>, global::System.String>)(
1047
__builder5.AddComponentParameter(74, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
1055
), (global::System.Func<
SelectViewModel
<string>, global::System.String>)(
1064
__builder5.AddComponentParameter(75, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
1073
__builder5.AddComponentParameter(76, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
1090
__builder5.AddComponentParameter(77, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
1116
__builder5.AddComponentParameter(79, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.
1133
__builder5.AddComponentParameter(80, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.ValueChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<global::System.String>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<global::System.String>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, __value => input.ViewModel.Value = __value, input.ViewModel.Value))));
1134
__builder5.AddComponentParameter(81, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>.ValueExpression), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Linq.Expressions.Expression<global::System.Func<global::System.String>>>(() => input.ViewModel.Value));
1143
= (global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<string>>)__value;
1160
SelectViewModel
<string>
1166
__builder5.AddComponentParameter(84, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>.
1183
__builder5.AddComponentParameter(85, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>.
1200
__builder5.AddComponentParameter(86, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>.
1208
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.IEnumerable<
SelectViewModel
<string>>>(
1217
__builder5.AddComponentParameter(87, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>.
1225
), (global::System.Func<
SelectViewModel
<string>, global::System.String>)(
1234
__builder5.AddComponentParameter(88, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>.
1242
), (global::System.Func<
SelectViewModel
<string>, global::System.String>)(
1251
__builder5.AddComponentParameter(89, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>.
1259
), (global::System.Func<
SelectViewModel
<string>, global::System.String>)(
1268
__builder5.AddComponentParameter(90, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>.
1277
__builder5.AddComponentParameter(91, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>.
1294
__builder5.AddComponentParameter(92, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>.
1311
__builder5.AddComponentParameter(93, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>.
1328
__builder5.AddComponentParameter(94, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>.
1354
__builder5.AddComponentParameter(96, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>.
1371
__builder5.AddComponentParameter(97, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>.ValueChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<global::System.String>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<global::System.String>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, __value => input.ViewModel.Value = __value, input.ViewModel.Value))));
1372
__builder5.AddComponentParameter(98, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>.ValueExpression), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Linq.Expressions.Expression<global::System.Func<global::System.String>>>(() => input.ViewModel.Value));
1373
__builder5.AddAttribute(99, "OptionTemplate", (global::Microsoft.AspNetCore.Components.RenderFragment<
SelectViewModel
<string>>)((optionContext) => (__builder6) => {
1420
= (global::Microsoft.FluentUI.AspNetCore.Components.FluentCombobox<
SelectViewModel
<string>>)__value;
Components_Dialogs_TextVisualizerDialog_razor.g.cs (1)
393
foreach (
var
option in _options)
Components_Pages_ConsoleLogs_razor.g.cs (5)
359
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.IEnumerable<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>>(
402
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>(
411
__builder2.AddComponentParameter(23, nameof(global::Aspire.Dashboard.Components.Controls.ResourceSelect.SelectedResourceChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<global::Aspire.Dashboard.Model.
SelectViewModel
<Aspire.Dashboard.Model.ResourceTypeDetails>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<global::Aspire.Dashboard.Model.
SelectViewModel
<Aspire.Dashboard.Model.ResourceTypeDetails>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(callback: __value => { PageViewModel.SelectedResource = __value; return global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(callback:
491
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>(
Components_Pages_Metrics_razor.g.cs (20)
402
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.IEnumerable<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>>(
462
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>(
471
__builder2.AddComponentParameter(26, nameof(global::Aspire.Dashboard.Components.Controls.ResourceSelect.SelectedResourceChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<global::Aspire.Dashboard.Model.
SelectViewModel
<Aspire.Dashboard.Model.ResourceTypeDetails>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<global::Aspire.Dashboard.Model.
SelectViewModel
<Aspire.Dashboard.Model.ResourceTypeDetails>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(callback: __value => { PageViewModel.SelectedResource = __value; return global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(callback:
551
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>(
623
SelectViewModel
<TimeSpan>
630
__builder2.AddComponentParameter(44, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<TimeSpan>>.
647
__builder2.AddComponentParameter(45, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<TimeSpan>>.
655
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.IEnumerable<
SelectViewModel
<TimeSpan>>>(
664
__builder2.AddComponentParameter(46, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<TimeSpan>>.
672
), (global::System.Func<
SelectViewModel
<TimeSpan>, global::System.String>)(
681
__builder2.AddComponentParameter(47, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<TimeSpan>>.
698
__builder2.AddComponentParameter(48, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<TimeSpan>>.
706
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<
SelectViewModel
<TimeSpan>>(
715
__builder2.AddComponentParameter(49, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<TimeSpan>>.SelectedOptionChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<
SelectViewModel
<TimeSpan>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<
SelectViewModel
<TimeSpan>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(callback: __value => { PageViewModel.SelectedDuration = __value; return global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(callback:
724
__builder2.AddComponentParameter(50, nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<TimeSpan>>.SelectedOptionExpression), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Linq.Expressions.Expression<global::System.Func<
SelectViewModel
<TimeSpan>>>>(() => PageViewModel.SelectedDuration));
725
_ = nameof(global::Microsoft.FluentUI.AspNetCore.Components.FluentSelect<
SelectViewModel
<TimeSpan>>.
Components_Pages_StructuredLogs_razor.g.cs (9)
359
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.IEnumerable<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>>(
419
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>(
428
__builder2.AddComponentParameter(25, nameof(global::Aspire.Dashboard.Components.Controls.ResourceSelect.SelectedResourceChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<global::Aspire.Dashboard.Model.
SelectViewModel
<Aspire.Dashboard.Model.ResourceTypeDetails>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<global::Aspire.Dashboard.Model.
SelectViewModel
<Aspire.Dashboard.Model.ResourceTypeDetails>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(callback: __value => { PageViewModel.SelectedResource = __value; return global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(callback:
508
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>(
680
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.List<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Microsoft.Extensions.Logging.LogLevel?>>>(
714
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Microsoft.Extensions.Logging.LogLevel?>>(
723
__builder2.AddComponentParameter(55, nameof(global::Aspire.Dashboard.Components.Controls.LogLevelSelect.LogLevelChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<global::Aspire.Dashboard.Model.
SelectViewModel
<Microsoft.Extensions.Logging.LogLevel?>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<global::Aspire.Dashboard.Model.
SelectViewModel
<Microsoft.Extensions.Logging.LogLevel?>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, __value => PageViewModel.SelectedLogLevel = __value, PageViewModel.SelectedLogLevel))));
Components_Pages_TraceDetail_razor.g.cs (8)
657
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.List<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.SpanType>>>(
691
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.SpanType>>(
700
__builder2.AddComponentParameter(66, nameof(global::Aspire.Dashboard.Components.Controls.SpanTypeSelect.SpanTypeChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<global::Aspire.Dashboard.Model.
SelectViewModel
<Aspire.Dashboard.Model.SpanType>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<global::Aspire.Dashboard.Model.
SelectViewModel
<Aspire.Dashboard.Model.SpanType>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, __value => _selectedSpanType = __value, _selectedSpanType))));
896
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.List<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.SpanType>>>(
930
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.SpanType>>(
939
__builder2.AddComponentParameter(88, nameof(global::Aspire.Dashboard.Components.Controls.SpanTypeSelect.SpanTypeChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<global::Aspire.Dashboard.Model.
SelectViewModel
<Aspire.Dashboard.Model.SpanType>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<global::Aspire.Dashboard.Model.
SelectViewModel
<Aspire.Dashboard.Model.SpanType>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, __value => _selectedSpanType = __value, _selectedSpanType))));
Components_Pages_Traces_razor.g.cs (9)
342
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.IEnumerable<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>>(
402
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>(
411
__builder2.AddComponentParameter(24, nameof(global::Aspire.Dashboard.Components.Controls.ResourceSelect.SelectedResourceChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<global::Aspire.Dashboard.Model.
SelectViewModel
<Aspire.Dashboard.Model.ResourceTypeDetails>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<global::Aspire.Dashboard.Model.
SelectViewModel
<Aspire.Dashboard.Model.ResourceTypeDetails>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(callback: __value => { PageViewModel.SelectedResource = __value; return global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(callback:
491
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.ResourceTypeDetails>>(
663
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.List<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.SpanType>>>(
697
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Aspire.Dashboard.Model.
SelectViewModel
<global::Aspire.Dashboard.Model.SpanType>>(
706
__builder2.AddComponentParameter(54, nameof(global::Aspire.Dashboard.Components.Controls.SpanTypeSelect.SpanTypeChanged), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::Microsoft.AspNetCore.Components.EventCallback<global::Aspire.Dashboard.Model.
SelectViewModel
<Aspire.Dashboard.Model.SpanType>>>(global::Microsoft.AspNetCore.Components.EventCallback.Factory.Create<global::Aspire.Dashboard.Model.
SelectViewModel
<Aspire.Dashboard.Model.SpanType>>(this, global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(this, __value => PageViewModel.SelectedSpanType = __value, PageViewModel.SelectedSpanType))));
Model\Interaction\InputViewModel.cs (2)
58
public List<
SelectViewModel
<string>> SelectOptions { get; private set; } = [];
60
public IEnumerable<
SelectViewModel
<string>> FilteredOptions()
Model\Otlp\FilterDialogFormModel.cs (2)
12
public
SelectViewModel
<string>? Parameter { get; set; }
15
public
SelectViewModel
<FilterCondition>? Condition { get; set; }
Model\Otlp\ResourcesSelectHelpers.cs (11)
10
public static
SelectViewModel
<ResourceTypeDetails> GetResource(this ICollection<
SelectViewModel
<ResourceTypeDetails>> resources, ILogger logger, string? name, bool canSelectGrouping,
SelectViewModel
<ResourceTypeDetails> fallbackViewModel)
49
static
SelectViewModel
<ResourceTypeDetails> SingleMatch(ICollection<
SelectViewModel
<ResourceTypeDetails>> resources, ILogger logger, string name,
SelectViewModel
<ResourceTypeDetails> match, bool fallback = false)
64
static
SelectViewModel
<ResourceTypeDetails> MultipleMatches(ICollection<
SelectViewModel
<ResourceTypeDetails>> resources, ILogger logger, string name, List<
SelectViewModel
<ResourceTypeDetails>> matches)
81
public static List<
SelectViewModel
<ResourceTypeDetails>> CreateResources(List<OtlpResource> resources)
85
var selectViewModels = new List<
SelectViewModel
<ResourceTypeDetails>>();
Model\SelectViewModel.cs (3)
9
public class SelectViewModel<T> : IEquatable<
SelectViewModel
<T>>
14
public bool Equals(
SelectViewModel
<T>? other)
34
if (obj is
SelectViewModel
<T> other)
Model\SpanType.cs (2)
64
public static List<
SelectViewModel
<SpanType>> CreateKnownSpanTypes(IStringLocalizer<ControlsStrings> loc)
66
return new List<
SelectViewModel
<SpanType>>
Aspire.Dashboard.Tests (20)
ConsoleLogsTests\CreateResourceSelectModelsTests.cs (8)
27
var
allResourceViewModel = new SelectViewModel<ResourceTypeDetails> { Id = null, Name = allResourceText };
30
var viewModels = Components.Pages.ConsoleLogs.GetConsoleLogResourceSelectViewModels(resourcesByName, allResourceViewModel, unknownStateText, false, out
var
optionToSelect);
70
var
allResourceViewModel = new SelectViewModel<ResourceTypeDetails> { Id = null, Name = allResourceText };
73
var viewModels = Components.Pages.ConsoleLogs.GetConsoleLogResourceSelectViewModels(resourcesByName, allResourceViewModel, unknownStateText, false, out
var
optionToSelect);
151
var
allResourceViewModel = new SelectViewModel<ResourceTypeDetails> { Id = null, Name = allResourceText };
159
out
var
optionToSelect);
184
var
allResourceViewModel = new SelectViewModel<ResourceTypeDetails> { Id = null, Name = allResourceText };
192
out
var
optionToSelect);
Model\ApplicationsSelectHelpersTests.cs (10)
57
var
app = appVMs.GetResource(NullLogger.Instance, "multiple-instanceabc", canSelectGrouping: false, null!);
74
var
app = appVMs.GetResource(NullLogger.Instance, "singleton", canSelectGrouping: false, null!);
91
var
app = appVMs.GetResource(NullLogger.Instance, "singleton-", canSelectGrouping: false, null!);
112
var
app = appVMs.GetResource(NullLogger.Instance, name, canSelectGrouping: false, null!);
153
var
app1 = appVMs.GetResource(logger, "name-instance", canSelectGrouping: false, null!);
161
var
app2 = appVMs.GetResource(logger, "name-instanceabc", canSelectGrouping: false, null!);
175
var appVMs = new List<
SelectViewModel
<ResourceTypeDetails>>
185
var
app = appVMs.GetResource(factory.CreateLogger("Test"), "test", canSelectGrouping: false, null!);
224
var
app = appVMs.GetResource(NullLogger.Instance, "app", canSelectGrouping: false, null!);
261
var
app = appVMs.GetResource(NullLogger.Instance, "app", canSelectGrouping: true, null!);
Model\SpanWaterfallViewModelTests.cs (2)
182
var
spanType = SpanType.CreateKnownSpanTypes(new TestStringLocalizer<ControlsStrings>()).Single(t => t.Id?.Name == spanTypeName);
183
var
otherSpanType = SpanType.CreateKnownSpanTypes(new TestStringLocalizer<ControlsStrings>()).Single(t => t.Id?.Name == "other");