2 implementations of NotificationCallback
Microsoft.CodeAnalysis.EditorFeatures (1)
Notification\EditorNotificationServiceFactory.cs (1)
45public Action<string, string, NotificationSeverity> NotificationCallback { get; set; }
Microsoft.VisualStudio.LanguageServices (1)
Notification\VSNotificationServiceFactory.cs (1)
48public Action<string, string, NotificationSeverity> NotificationCallback { get; set; }
4 writes to NotificationCallback
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
EncapsulateField\EncapsulateFieldTestState.cs (1)
39notificationService.NotificationCallback = callback;
ExtractMethod\ExtractMethodMiscellaneousTests.cs (1)
133callBackService.NotificationCallback = (_, _, _) => gotNotification = true;
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
RenameTracking\RenameTrackingTestState.cs (1)
95notificationService.NotificationCallback = callback;
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (1)
Workspaces\TestWorkspace`1.cs (1)
110callback.NotificationCallback = (message, title, severity) =>