ILGenerator.MarkSequencePointCore Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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).