2 implementations of ConfirmMessageBox
Microsoft.CodeAnalysis.EditorFeatures (1)
Notification\EditorNotificationServiceFactory.cs (1)
65public bool ConfirmMessageBox(
Microsoft.VisualStudio.LanguageServices (1)
Notification\VSNotificationServiceFactory.cs (1)
90public bool ConfirmMessageBox(string message, string title = null, NotificationSeverity severity = NotificationSeverity.Warning)
3 references to ConfirmMessageBox
Microsoft.CodeAnalysis.EditorFeatures (2)
ChangeSignature\AbstractChangeSignatureCommandHandler.cs (1)
110if (result.ConfirmationMessage != null && !notificationService.ConfirmMessageBox(result.ConfirmationMessage, severity: NotificationSeverity.Warning))
ExtractMethod\ExtractMethodCommandHandler.cs (1)
250if (!notificationService.ConfirmMessageBox(
Microsoft.CodeAnalysis.Features (1)
ChangeSignature\ChangeSignatureCodeActionOperation.cs (1)
41if (!notificationService.ConfirmMessageBox(ConfirmationMessage, severity: NotificationSeverity.Warning))