Expression.DebugInfo(SymbolDocumentInfo, Int32, Int32, Int32, Int32) Método

Definição

Cria um DebugInfoExpression com o intervalo especificado.

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

Parâmetros

document
SymbolDocumentInfo

O SymbolDocumentInfo que representa o arquivo de origem.

startLine
Int32

A linha inicial deste DebugInfoExpression. Deve ser maior que 0.

startColumn
Int32

A coluna inicial deste DebugInfoExpression. Deve ser maior que 0.

endLine
Int32

A linha final deste DebugInfoExpression. Deve ser maior ou igual à linha inicial.

endColumn
Int32

A coluna final deste DebugInfoExpression. Se a linha final for a mesma da linha inicial, ela deverá ser maior ou igual à coluna inicial. De qualquer forma, deve ser maior que 0.

Retornos

Uma instância de DebugInfoExpression.

Aplica-se a