1 instantiation of DashboardDialogService
Aspire.Dashboard.Tests (1)
Model\ResourceMenuBuilderTests.cs (1)
31_dialogService = new DashboardDialogService(
41 references to DashboardDialogService
Aspire.Dashboard (32)
Components\Controls\Chart\MetricTable.razor.cs (1)
38public required DashboardDialogService DialogService { get; init; }
Components\Controls\Chart\PlotlyChart.razor.cs (1)
31public required DashboardDialogService DialogService { get; init; }
Components\Controls\GridValue.razor.cs (1)
103public required DashboardDialogService DialogService { get; init; }
Components\Controls\PropertyValues\SpanIdButtonValue.razor.cs (1)
24public required DashboardDialogService DialogService { get; init; }
Components\Controls\ResourceDetails.razor.cs (1)
62public required DashboardDialogService DialogService { get; init; }
Components\Controls\SpanDetails.razor.cs (1)
53public required DashboardDialogService DialogService { get; init; }
Components\Dialogs\ExemplarsDialog.razor.cs (1)
24public required DashboardDialogService DialogService { get; init; }
Components\Dialogs\GenAIVisualizerDialog.razor.cs (1)
335public static async Task OpenDialogAsync(DashboardDialogService dialogService,
Components\Dialogs\SettingsDialog.razor.cs (1)
31public required DashboardDialogService DialogService { get; init; }
Components\Interactions\InteractionsProvider.cs (3)
72public required DashboardDialogService DialogService { get; init; } 159Func<DashboardDialogService, Task<IDialogReference>> openDialog; 569public async Task<IDialogReference> ShowMessageBoxAsync(DashboardDialogService dialogService, MessageBoxContent content, DialogParameters parameters)
Components\Layout\AspirePageContentLayout.razor.cs (1)
47public required DashboardDialogService DialogService { get; init; }
Components\Layout\MainLayout.razor.cs (1)
54public required DashboardDialogService DialogService { get; init; }
Components\Pages\ConsoleLogs.razor.cs (1)
135public required DashboardDialogService DialogService { get; init; }
Components\Pages\Resources.razor.cs (1)
77public required DashboardDialogService DialogService { get; init; }
Components\Pages\StructuredLogs.razor.cs (1)
69public required DashboardDialogService DialogService { get; init; }
Components\Pages\TraceDetail.razor.cs (1)
97public required DashboardDialogService DialogService { get; init; }
Components\Pages\Traces.razor.cs (1)
68public required DashboardDialogService DialogService { get; init; }
Components_Controls_ExceptionDetails_razor.g.cs (1)
334public required DashboardDialogService DialogService { get; init; }
DashboardWebApplication.cs (1)
324builder.Services.AddScoped<DashboardDialogService>();
Model\OpenTextVisualizerDialogOptions.cs (1)
11public required DashboardDialogService DialogService { get; init; }
Model\ResourceMenuBuilder.cs (2)
44private readonly DashboardDialogService _dialogService; 59DashboardDialogService dialogService)
Model\SpanMenuBuilder.cs (2)
36private readonly DashboardDialogService _dialogService; 48DashboardDialogService dialogService,
Model\StructuredLogMenuBuilder.cs (2)
31private readonly DashboardDialogService _dialogService; 42DashboardDialogService dialogService,
Model\TraceLinkHelpers.cs (2)
21DashboardDialogService dialogService, 38DashboardDialogService dialogService,
Model\TraceMenuBuilder.cs (2)
34private readonly DashboardDialogService _dialogService; 46DashboardDialogService dialogService,
Aspire.Dashboard.Components.Tests (8)
Controls\GenAIVisualizerDialogTests.cs (6)
36var cut = SetUpDialog(out var dialogService); 102var cut = SetUpDialog(out var dialogService); 122var cut = SetUpDialog(out var dialogService); 206var cut = SetUpDialog(out var dialogService); 306private IRenderedFragment SetUpDialog(out DashboardDialogService dialogService) 317dialogService = Services.GetRequiredService<DashboardDialogService>();
Interactions\InteractionsProviderTests.cs (1)
526Services.AddScoped<DashboardDialogService>();
Shared\FluentUISetupHelpers.cs (1)
151context.Services.AddScoped<DashboardDialogService>();
Aspire.Dashboard.Tests (1)
Model\ResourceMenuBuilderTests.cs (1)
25private readonly DashboardDialogService _dialogService;