SuppressMessageAttribute.MessageId 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定展開的排除準則。
public:
property System::String ^ MessageId { System::String ^ get(); void set(System::String ^ value); };
public string MessageId { get; set; }
public string? MessageId { get; set; }
member this.MessageId : string with get, set
Public Property MessageId As String
屬性值
包含已展開排除準則的字串。
範例
下列程式代碼範例示範如何使用 SuppressMessageAttribute 屬性來隱藏方法宣告中特定參數的警告,以及方法中的特定欄位。 此程式代碼範例是針對 類別提供的較大範例的 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
備註
屬性 MessageId 是選擇性自變數,指定常值元數據目標不夠精確的其他排除範圍。 例如, SuppressMessageAttribute 無法在方法內套用 ,但您可能想要隱藏對 方法中單一語句的違規。
注意
此屬性僅受 舊版程式代碼分析所遵守。