Partager via


ErrorListProvider.ForceShowErrors, méthode

Montre les erreurs dans la fenêtre de Liste d'erreurs.

Espace de noms :  Microsoft.VisualStudio.Shell
Assembly :  Microsoft.VisualStudio.Shell.11.0 (dans Microsoft.VisualStudio.Shell.11.0.dll)

Syntaxe

'Déclaration
Public Sub ForceShowErrors
public void ForceShowErrors()

Remarques

Force toggle " ON " d'erreurs, afin que les erreurs soient visibles dans la fenêtre de Liste d'erreurs.Des avertissements et les messages d'information ne sont pas affectés.

Exemples

[C#]

using System;
using System.Collections;
using System.Diagnostics;
using System.Windows.Forms;
using Microsoft.VisualStudio.Shell;
//Where this refers to an ErrorListProvider object.
/// <summary>
/// Ensure Errors List is visible and listing validation errors.
/// </summary>
public void ShowErrors()
{
this.BringToFront();
this.ForceShowErrors();
}

Sécurité .NET Framework

Voir aussi

Référence

ErrorListProvider Classe

Microsoft.VisualStudio.Shell, espace de noms