SuppressMessageAttribute Constructor
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Sub New ( _ category As String, _ checkId As String _ ) 'Usage Dim category As String Dim checkId As String Dim instance As New SuppressMessageAttribute(category, checkId)
public SuppressMessageAttribute ( String category, String checkId )
public function SuppressMessageAttribute ( category : String, checkId : String )
Parameters
- category
The category for the attribute.
- checkId
The identifier of the analysis tool rule the attribute applies to.
The category parameter value is specific to the analysis tool and categorizes the rule identified by the checkId parameter. The two parameters concatenated together form a unique identifier for the rule.
Note |
|---|
| The preprocessor symbol "CODE_ANALYSIS" must be defined for this attribute to be effective. The absence of the preprocessor symbol results in the attribute not being applied. |
The following code example shows the use of the SuppressMessageAttribute attribute to suppress warnings for the Microsoft.Performance category and the CA1801 and CA1804 check identifiers. This code example is part of a larger example provided for the SuppressMessageAttribute class.
<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
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
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note