SuppressMessageAttribute クラス
アセンブリ: mscorlib (mscorlib.dll 内)

<AttributeUsageAttribute(AttributeTargets.All, Inherited:=False, AllowMultiple:=True)> _ <ConditionalAttribute("CODE_ANALYSIS")> _ Public NotInheritable Class SuppressMessageAttribute Inherits Attribute
[AttributeUsageAttribute(AttributeTargets.All, Inherited=false, AllowMultiple=true)] [ConditionalAttribute("CODE_ANALYSIS")] public sealed class SuppressMessageAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::All, Inherited=false, AllowMultiple=true)] [ConditionalAttribute(L"CODE_ANALYSIS")] public ref class SuppressMessageAttribute sealed : public Attribute

![]() |
---|
ConditionalAttribute は、属性呼び出しを含めるか省略するかを決定する条件シンボルとしてプリプロセス シンボル "CODE_ANALYSIS" を指定して、このクラスに適用されます。シンボルが定義されている場合、属性呼び出しが含められ、それ以外の場合は省略されます。
|

SuppressMessageAttribute 属性を使用して警告メッセージの実行を抑制する方法を次のコード例に示します。
#Const CODE_ANALYSIS = True Imports System Imports System.Diagnostics.CodeAnalysis Class Library <SuppressMessage("Microsoft.Performance", "CA1801:AvoidUnusedParameters", 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 'FileNode End Class 'Library
#define CODE_ANALYSIS using System; using System.Diagnostics.CodeAnalysis; namespace CodeAnalysisSample { class Library { [SuppressMessage("Microsoft.Performance", "CA1801:AvoidUnusedParameters", 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; } } }

System.Attribute
System.Diagnostics.CodeAnalysis.SuppressMessageAttribute


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- SuppressMessageAttribute クラスのページへのリンク