2 implementations of SendNotification
Microsoft.CodeAnalysis.EditorFeatures (1)
Notification\EditorNotificationServiceFactory.cs (1)
47public void SendNotification(
Microsoft.VisualStudio.LanguageServices (1)
Notification\VSNotificationServiceFactory.cs (1)
53public void SendNotification(
23 references to SendNotification
Microsoft.CodeAnalysis.EditorFeatures (12)
ChangeSignature\AbstractChangeSignatureCommandHandler.cs (1)
164notificationService.SendNotification(errorMessage, severity: severity);
CodeActions\CodeActionEditHandlerService.cs (1)
113workspace.Services.GetService<INotificationService>()?.SendNotification(
EncapsulateField\AbstractEncapsulateFieldCommandHandler.cs (1)
91notificationService.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)
71(errorMessage, severity) => workspace.Services.GetService<INotificationService>().SendNotification(errorMessage, severity: severity),
ExtractMethod\ExtractMethodCommandHandler.cs (1)
236notificationService.SendNotification(
GoToDefinition\GoToDefinitionCommandHandler.cs (1)
145notificationService.SendNotification(
InlineRename\CommandHandlers\AbstractRenameCommandHandler_RenameHandler.cs (1)
141notificationService.SendNotification(message, title: EditorFeaturesResources.Rename, severity: NotificationSeverity.Error);
InlineRename\CommandHandlers\RenameCommandHandler.cs (1)
82notificationService?.SendNotification(ex.Message, title: EditorFeaturesResources.Rename, severity: NotificationSeverity.Error);
InlineRename\InlineRenameSession.cs (1)
853notificationService.SendNotification(
RenameTracking\RenameTrackingTaggerProvider.RenameTrackingCodeAction.cs (2)
95?.SendNotification(EditorFeaturesResources.The_rename_tracking_session_was_cancelled_and_is_no_longer_available, severity: NotificationSeverity.Error); 124notificationService.SendNotification(
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\Editor\FSharpNavigationBarItemService.cs (1)
82notificationService.SendNotification(EditorFeaturesResources.The_definition_of_the_object_is_hidden, severity: NotificationSeverity.Error);
Microsoft.VisualStudio.LanguageServices (9)
CallHierarchy\CallHierarchyCommandHandler.cs (1)
99notificationService.SendNotification(EditorFeaturesResources.Cursor_must_be_on_a_member_name, severity: NotificationSeverity.Information);
ChangeSignature\AddParameterDialogViewModel.cs (1)
174_notificationService?.SendNotification(message, severity: NotificationSeverity.Information);
ChangeSignature\ChangeSignatureDialogViewModel.cs (1)
497_notificationService.SendNotification(message, severity: NotificationSeverity.Information);
ExtractClass\ExtractClassViewModel.cs (1)
66=> _notificationService.SendNotification(message, severity: NotificationSeverity.Information);
ExtractInterface\ExtractInterfaceDialogViewModel.cs (1)
74=> _notificationService.SendNotification(message, severity: NotificationSeverity.Information);
GenerateType\GenerateTypeDialogViewModel.cs (1)
385=> _notificationService.SendNotification(message, severity: NotificationSeverity.Information);
Packaging\PackageInstallerServiceFactory.cs (2)
355notificationService?.SendNotification( 416notificationService?.SendNotification(
Snippets\SnippetExpansionClient.cs (1)
1113notificationService.SendNotification(
Microsoft.VisualStudio.LanguageServices.CSharp (1)
Options\NamingStylesOptionPage.cs (1)
39_notificationService.SendNotification(ServicesVSResources.Some_naming_rules_are_incomplete_Please_complete_or_remove_them);