1 instantiation of NotificationMessage
Aspire.Dashboard (1)
Model\NotificationService.cs (1)
39
result[i] = new
NotificationMessage
{ Id = item.Id, Entry = item.Entry };
10 references to NotificationMessage
Aspire.Dashboard (4)
Components\Dialogs\NotificationsDialog.razor.cs (1)
12
private IReadOnlyList<
NotificationMessage
> _notifications = [];
Model\INotificationService.cs (1)
23
IReadOnlyList<
NotificationMessage
> GetNotifications();
Model\NotificationService.cs (2)
30
public IReadOnlyList<
NotificationMessage
> GetNotifications()
35
var result = new
NotificationMessage
[_notifications.Count];
Aspire.Dashboard.Tests (6)
Model\DashboardCommandExecutorTests.cs (6)
45
var
startingNotification = Assert.Single(notificationService.GetNotifications());
53
var
cancelingNotification = Assert.Single(notificationService.GetNotifications());
65
var
canceledNotification = Assert.Single(notificationService.GetNotifications());
90
var
startingNotification = Assert.Single(notificationService.GetNotifications());
100
var
cancelingNotification = Assert.Single(notificationService.GetNotifications());
141
var
notification = Assert.Single(notificationService.GetNotifications());