SonarLint.VisualStudio.Integration.TeamExplorer.ConnectSectionViewModel.ShowNotificationError C# (CSharp) Method

ShowNotificationError() public method

public ShowNotificationError ( string message, System.Guid notificationId, ICommand associatedCommand ) : void
message string
notificationId System.Guid
associatedCommand ICommand
return void
        public void ShowNotificationError(string message, Guid notificationId, ICommand associatedCommand)
        {
            this.ShowNotification(message, NotificationType.Error, NotificationFlags.NoTooltips/*No need for them since we don't use hyperlinks*/, associatedCommand, notificationId);
        }