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

ShowNotificationWarning() public method

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