Rediģēt

Kopīgot, izmantojot


ILGenerator.MarkSequencePointCore Method

Definition

When overridden in a derived class, marks a sequence point in the Microsoft intermediate language (MSIL) stream.

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)

Parameters

document
ISymbolDocumentWriter

The document for which the sequence point is being defined.

startLine
Int32

The line where the sequence point begins.

startColumn
Int32

The column in the line where the sequence point begins.

endLine
Int32

The line where the sequence point ends.

endColumn
Int32

The column in the line where the sequence point ends.

Exceptions

document is not valid.

Emitting debug info is not supported.

Remarks

The parameters validated in the caller: MarkSequencePoint(ISymbolDocumentWriter, Int32, Int32, Int32, Int32).

Applies to