3 implementations of ConfirmMessageBox
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities2 (1)
Utilities\TestNotificationService.vb (1)
27Public Function ConfirmMessageBox(message As String, Optional title As String = Nothing, Optional severity As NotificationSeverity = NotificationSeverity.Warning) As Boolean Implements INotificationService.ConfirmMessageBox
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
Notification\EditorNotificationServiceFactory.cs (1)
65public bool ConfirmMessageBox(
Microsoft.VisualStudio.LanguageServices (1)
Notification\VSNotificationServiceFactory.cs (1)
92public bool ConfirmMessageBox(string message, string title = null, NotificationSeverity severity = NotificationSeverity.Warning)
5 references to ConfirmMessageBox
Microsoft.CodeAnalysis.EditorFeatures (3)
ChangeSignature\AbstractChangeSignatureCommandHandler.cs (1)
120if (result.ConfirmationMessage != null && !notificationService.ConfirmMessageBox(result.ConfirmationMessage, severity: NotificationSeverity.Warning))
ExtractMethod\ExtractMethodCommandHandler.cs (2)
169if (!notificationService.ConfirmMessageBox( 264if (!notificationService.ConfirmMessageBox(
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities2 (1)
Utilities\TestNotificationService.vb (1)
27Public Function ConfirmMessageBox(message As String, Optional title As String = Nothing, Optional severity As NotificationSeverity = NotificationSeverity.Warning) As Boolean Implements INotificationService.ConfirmMessageBox
Microsoft.CodeAnalysis.Features (1)
ChangeSignature\ChangeSignatureCodeActionOperation.cs (1)
48if (!notificationService.ConfirmMessageBox(ConfirmationMessage, severity: NotificationSeverity.Warning))