ILGenerator.MarkSequencePointCore 方法

定义

在派生类中重写时,在Microsoft中间语言(MSIL)流中标记序列点。

protected:
 virtual void MarkSequencePointCore(System::Diagnostics::SymbolStore::ISymbolDocumentWriter ^ document, int startLine, int startColumn, int endLine, int endColumn);
protected virtual void MarkSequencePointCore (System.Diagnostics.SymbolStore.ISymbolDocumentWriter document, int startLine, int startColumn, int endLine, int endColumn);
abstract member MarkSequencePointCore : System.Diagnostics.SymbolStore.ISymbolDocumentWriter * int * int * int * int -> unit
override this.MarkSequencePointCore : System.Diagnostics.SymbolStore.ISymbolDocumentWriter * int * int * int * int -> unit
Protected Overridable Sub MarkSequencePointCore (document As ISymbolDocumentWriter, startLine As Integer, startColumn As Integer, endLine As Integer, endColumn As Integer)

参数

document
ISymbolDocumentWriter

要为其定义序列点的文档。

startLine
Int32

序列点开始的行。

startColumn
Int32

序列点开始的行中的列。

endLine
Int32

序列点结束的行。

endColumn
Int32

序列点结束的行中的列。

例外

document 无效。

不支持发出调试信息。

注解

调用方中验证的参数:MarkSequencePoint(ISymbolDocumentWriter, Int32, Int32, Int32, Int32)

适用于