1 write to NotificationPreferences
Microsoft.VisualStudio.LanguageServices.Implementation (1)
Options\Style\AbstractCodeStyleOptionViewModel.cs (1)
62NotificationPreferences = notificationPreferences ?? GetDefaultNotifications();
5 references to NotificationPreferences
Microsoft.VisualStudio.LanguageServices.Implementation (5)
Options\Style\AbstractCodeStyleOptionViewModel.cs (1)
46get { return NotificationPreferences.First(); }
Options\Style\BooleanCodeStyleOptionViewModel.cs (2)
44var notificationViewModel = NotificationPreferences.Single(i => i.Notification.Severity == codeStyleOption.Notification.Severity); 45_selectedNotificationPreference = NotificationPreferences.Single(p => p.Notification.Severity == notificationViewModel.Notification.Severity);
Options\Style\EnumCodeStyleOptionViewModel.cs (2)
64var notificationViewModel = NotificationPreferences.Single(i => i.Notification.Severity == codeStyleOption.Notification.Severity); 65_selectedNotificationPreference = NotificationPreferences.Single(p => p.Notification.Severity == notificationViewModel.Notification.Severity);