DiagnosticMessage(String, String, String, Int32, Int32, Int32, Int32) 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DiagnosticMessage의 새 인스턴스를 초기화합니다.
public:
DiagnosticMessage(System::String ^ message, System::String ^ formattedMessage, System::String ^ filePath, int startLine, int startColumn, int endLine, int endColumn);
public DiagnosticMessage (string message, string formattedMessage, string filePath, int startLine, int startColumn, int endLine, int endColumn);
public DiagnosticMessage (string? message, string? formattedMessage, string? filePath, int startLine, int startColumn, int endLine, int endColumn);
new Microsoft.AspNetCore.Diagnostics.DiagnosticMessage : string * string * string * int * int * int * int -> Microsoft.AspNetCore.Diagnostics.DiagnosticMessage
Public Sub New (message As String, formattedMessage As String, filePath As String, startLine As Integer, startColumn As Integer, endLine As Integer, endColumn As Integer)
매개 변수
- message
- String
오류 메시지입니다.
- formattedMessage
- String
형식이 지정된 오류 메시지입니다.
- filePath
- String
메시지를 생성한 파일의 경로입니다.
- startLine
- Int32
컴파일 오류의 시작 부분에 대한 1부터 시작하는 줄 인덱스입니다.
- startColumn
- Int32
컴파일 오류의 시작 부분에 대한 0부터 시작하는 열 인덱스입니다.
- endLine
- Int32
컴파일 오류의 끝에 대한 하나의 기반 줄 인덱스입니다.
- endColumn
- Int32
컴파일 오류 끝에 대한 0부터 시작하는 열 인덱스입니다.