Expression.DebugInfo(SymbolDocumentInfo, Int32, Int32, Int32, Int32) メソッド

定義

指定したスパンを使用して、DebugInfoExpression を作成します。

public:
 static System::Linq::Expressions::DebugInfoExpression ^ DebugInfo(System::Linq::Expressions::SymbolDocumentInfo ^ document, int startLine, int startColumn, int endLine, int endColumn);
public static System.Linq.Expressions.DebugInfoExpression DebugInfo (System.Linq.Expressions.SymbolDocumentInfo document, int startLine, int startColumn, int endLine, int endColumn);
static member DebugInfo : System.Linq.Expressions.SymbolDocumentInfo * int * int * int * int -> System.Linq.Expressions.DebugInfoExpression
Public Shared Function DebugInfo (document As SymbolDocumentInfo, startLine As Integer, startColumn As Integer, endLine As Integer, endColumn As Integer) As DebugInfoExpression

パラメーター

document
SymbolDocumentInfo

ソース ファイルを表す SymbolDocumentInfo

startLine
Int32

この DebugInfoExpression 先頭行。 1 以上であることが必要です。

startColumn
Int32

この DebugInfoExpression の先頭列。 1 以上であることが必要です。

endLine
Int32

この DebugInfoExpression の最終行。 開始行の値以上である必要があります。

endColumn
Int32

この DebugInfoExpression の最終列。 最終行が先頭行と同じである場合、これは開始列の値以上である必要があります。 どのような場合でも、0 より大きい値である必要があります。

戻り値

DebugInfoExpression のインスタンス。

適用対象