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
특성이 적용될 분석 도구 규칙의 식별자입니다.
예제
다음 코드 예제에서는 범주 및 CA1801
및 CA1804
검사 식별자에 대 한 Microsoft.Performance
경고를 표시하지 않는 특성을 사용 하 여 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
설명
매개 변수 값은 category
분석 도구와 관련이 있으며 매개 변수로 식별되는 checkId
규칙을 분류합니다. 함께 연결된 두 매개 변수는 규칙에 대한 고유 식별자를 형성합니다.
참고
이 특성이 유효하려면 전처리기 기호 "CODE_ANALYSIS"을 정의해야 합니다. 전처리기 기호가 없을 경우 특성이 적용되지 않습니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET