3 implementations of SendNotification
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities2 (1)
Utilities\TestNotificationService.vb (1)
21Public Sub SendNotification(message As String, Optional title As String = Nothing, Optional severity As NotificationSeverity = NotificationSeverity.Warning) Implements INotificationService.SendNotification
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
Notification\EditorNotificationServiceFactory.cs (1)
47public void SendNotification(
Microsoft.VisualStudio.LanguageServices (1)
Notification\VSNotificationServiceFactory.cs (1)
55public void SendNotification(
29 references to SendNotification
Microsoft.CodeAnalysis.EditorFeatures (11)
ChangeSignature\AbstractChangeSignatureCommandHandler.cs (1)
174notificationService.SendNotification(errorMessage, severity: severity);
CodeActions\CodeActionEditHandlerService.cs (1)
123workspace.Services.GetService<INotificationService>()?.SendNotification(
EncapsulateField\AbstractEncapsulateFieldCommandHandler.cs (1)
104notificationService.SendNotification(EditorFeaturesResources.Please_select_the_definition_of_the_field_to_encapsulate, severity: NotificationSeverity.Error);
Extensibility\NavigationBar\AbstractEditorNavigationBarItemService.cs (1)
66notificationService.SendNotification(EditorFeaturesResources.The_definition_of_the_object_is_hidden, severity: NotificationSeverity.Error);
ExtractInterface\AbstractExtractInterfaceCommandHandler.cs (1)
77(errorMessage, severity) => workspace.Services.GetService<INotificationService>().SendNotification(errorMessage, severity: severity),
ExtractMethod\ExtractMethodCommandHandler.cs (1)
250notificationService.SendNotification(
GoToDefinition\GoToDefinitionCommandHandler.cs (1)
161notificationService.SendNotification(
InlineRename\CommandHandlers\AbstractRenameCommandHandler_RenameHandler.cs (1)
135notificationService.SendNotification(message, title: EditorFeaturesResources.Rename, severity: NotificationSeverity.Error);
InlineRename\InlineRenameSession.cs (1)
857notificationService.SendNotification(
RenameTracking\RenameTrackingTaggerProvider.RenameTrackingCodeAction.cs (2)
94?.SendNotification(EditorFeaturesResources.The_rename_tracking_session_was_cancelled_and_is_no_longer_available, severity: NotificationSeverity.Error); 129notificationService.SendNotification(
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities2 (1)
Utilities\TestNotificationService.vb (1)
21Public Sub SendNotification(message As String, Optional title As String = Nothing, Optional severity As NotificationSeverity = NotificationSeverity.Warning) Implements INotificationService.SendNotification
Microsoft.CodeAnalysis.EditorFeatures.Wpf (2)
InlineRename\CommandHandlers\RenameCommandHandler.cs (1)
113notificationService?.SendNotification(ex.Message, title: EditorFeaturesResources.Rename, severity: NotificationSeverity.Error);
InlineRename\UI\Dashboard\RenameDashboard.xaml.cs (1)
344notificationService.SendNotification(ex.Message, title: EditorFeaturesResources.Rename, severity: NotificationSeverity.Error);
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\Editor\FSharpNavigationBarItemService.cs (1)
81notificationService.SendNotification(EditorFeaturesResources.The_definition_of_the_object_is_hidden, severity: NotificationSeverity.Error);
Microsoft.VisualStudio.LanguageServices (9)
CallHierarchy\CallHierarchyCommandHandler.cs (1)
118notificationService.SendNotification(EditorFeaturesResources.Cursor_must_be_on_a_member_name, severity: NotificationSeverity.Information);
ChangeSignature\AddParameterDialogViewModel.cs (1)
172_notificationService?.SendNotification(message, severity: NotificationSeverity.Information);
ChangeSignature\ChangeSignatureDialogViewModel.cs (1)
514_notificationService.SendNotification(message, severity: NotificationSeverity.Information);
ExtractClass\ExtractClassViewModel.cs (1)
64=> _notificationService.SendNotification(message, severity: NotificationSeverity.Information);
ExtractInterface\ExtractInterfaceDialogViewModel.cs (1)
77=> _notificationService.SendNotification(message, severity: NotificationSeverity.Information);
GenerateType\GenerateTypeDialogViewModel.cs (1)
405=> _notificationService.SendNotification(message, severity: NotificationSeverity.Information);
Packaging\PackageInstallerServiceFactory.cs (2)
356notificationService?.SendNotification( 417notificationService?.SendNotification(
Snippets\AbstractSnippetExpansionClient.cs (1)
1112notificationService.SendNotification(
Microsoft.VisualStudio.LanguageServices.CSharp (1)
Options\NamingStylesOptionPage.cs (1)
39_notificationService.SendNotification(ServicesVSResources.Some_naming_rules_are_incomplete_Please_complete_or_remove_them);
Microsoft.VisualStudio.LanguageServices.Implementation (3)
Options\Style\NamingPreferences\NamingStyles\NamingStyleViewModel.cs (1)
142_notificationService.SendNotification(ServicesVSResources.Enter_a_title_for_this_Naming_Style);
Options\Style\NamingPreferences\SymbolSpecification\SymbolSpecificationViewModel.cs (1)
157_notificationService.SendNotification(ServicesVSResources.Enter_a_title_for_this_Naming_Style);
SolutionExplorer\AnalyzersCommandHandler.cs (1)
655notificationService.SendNotification(message1 + Environment.NewLine + Environment.NewLine + message2, severity: NotificationSeverity.Error);
Microsoft.VisualStudio.LanguageServices.VisualBasic (1)
Options\NamingStylesOptionPage.vb (1)
32_notificationService.SendNotification(ServicesVSResources.Some_naming_rules_are_incomplete_Please_complete_or_remove_them)