SuppressMessageAttribute.Category Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la catégorie qui identifie la classification de l'attribut.
public:
property System::String ^ Category { System::String ^ get(); };
public string Category { get; }
member this.Category : string
Public ReadOnly Property Category As String
Valeur de propriété
Catégorie qui identifie l'attribut.
Exemples
L’exemple de code suivant montre l’utilisation de l’attribut SuppressMessageAttribute pour supprimer les avertissements pour la Microsoft.Performance
catégorie et les CA1801
identificateurs et CA1804
case activée. Cet exemple de code fait partie d’un exemple plus grand fourni pour la SuppressMessageAttribute classe .
[SuppressMessage("Microsoft.Performance", "CA1801:ReviewUnusedParameters", MessageId = "isChecked")]
[SuppressMessage("Microsoft.Performance", "CA1804:RemoveUnusedLocals", MessageId = "fileIdentifier")]
static void FileNode(string name, bool isChecked)
{
string fileIdentifier = name;
string fileName = name;
string version = String.Empty;
}
<SuppressMessage("Microsoft.Performance", "CA1801:ReviewUnusedParameters", MessageId:="isChecked"), _
SuppressMessage("Microsoft.Performance", "CA1804:RemoveUnusedLocals", MessageId:="fileIdentifier")> _
Shared Sub FileNode(ByVal name As String, ByVal isChecked As Boolean)
Dim fileIdentifier As String = name
Dim fileName As String = name
Dim version As String = String.Empty
End Sub
Remarques
La Category propriété décrit la catégorie d’analyse d’outil ou d’outil à laquelle s’applique un attribut de suppression de message.