SuppressMessageAttribute(String, String) 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 類別的新實例 SuppressMessageAttribute ,並指定程式代碼分析工具的類別和分析規則的標識碼。
public:
SuppressMessageAttribute(System::String ^ category, System::String ^ checkId);
public SuppressMessageAttribute (string category, string checkId);
new System.Diagnostics.CodeAnalysis.SuppressMessageAttribute : string * string -> System.Diagnostics.CodeAnalysis.SuppressMessageAttribute
Public Sub New (category As String, checkId As String)
參數
- category
- String
屬性的分類。
- checkId
- String
套用屬性的分析工具規則的識別項。
範例
下列程式代碼範例示範如何使用 SuppressMessageAttribute 屬性來隱藏類別和 CA1801
和 CA1804
檢查標識碼的警告Microsoft.Performance
。 此程式代碼範例是提供給 類別之較大範例的 SuppressMessageAttribute 一部分。
[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
備註
category
參數值專屬於分析工具,並分類 參數所checkId
識別的規則。 這兩個參數會串連在一起,形成規則的唯一標識碼。
注意
預處理器符號 「CODE_ANALYSIS」 必須定義,這個屬性才能生效。 缺少預處理器符號會導致屬性未套用。