2 implementations of Notification
Microsoft.CodeAnalysis.Workspaces (2)
CodeStyle\CodeStyleOption.cs (1)
38NotificationOption2 ICodeStyleOption.Notification => _codeStyleOptionImpl.Notification;
CodeStyleOption2`1.cs (1)
94public NotificationOption2 Notification { get; }
4 references to Notification
Microsoft.CodeAnalysis.EditorFeatures (2)
EditorConfigSettings\Data\CodeStyleSetting.cs (1)
25=> GetCodeStyle().Notification.Severity.ToDiagnosticSeverity() ?? DiagnosticSeverity.Hidden;
EditorConfigSettings\Updater\SettingsUpdateHelper.cs (1)
67var severity = codeStyleOption.Notification.Severity switch
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (1)
Options\OptionsTestHelpers.cs (1)
129.WithNotification((codeStyle.Notification == NotificationOption2.Error) ? NotificationOption2.Warning : NotificationOption2.Error),
Microsoft.VisualStudio.LanguageServices.Implementation (1)
Options\AbstractOptionPreviewViewModel.cs (1)
79actualValue = codeStyleOption.WithValue(newCodeStyleOption.Value).WithNotification(newCodeStyleOption.Notification);