DiagnosticMessage(String, String, String, Int32, Int32, Int32, Int32) コンストラクター

定義

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

コンパイル エラーの最後の 1 から始まる行インデックス。

endColumn
Int32

コンパイル エラーの最後の 0 から始まる列インデックス。

適用対象