12 references to _notifications
Aspire.Dashboard (12)
Model\NotificationService.cs (12)
35var result = new NotificationMessage[_notifications.Count]; 36for (var i = 0; i < _notifications.Count; i++) 38var item = _notifications[_notifications.Count - 1 - i]; 52_notifications.Add((id, notification)); 56while (_notifications.Count > MaxNotifications) 58_notifications.RemoveAt(0); 71for (var i = 0; i < _notifications.Count; i++) 73if (_notifications[i].Id == id) 75_notifications[i] = (id, notification); 88_notifications.RemoveAll(n => n.Id == id); 98_notifications.Clear();