System.Runtime.CompilerServices.SymbolDocumentGenerator.MarkSequencePoint C# (CSharp) Method

MarkSequencePoint() private method

private MarkSequencePoint ( LambdaExpression method, MethodBase methodBase, ILGenerator ilg, DebugInfoExpression sequencePoint ) : void
method System.Linq.Expressions.LambdaExpression
methodBase System.Reflection.MethodBase
ilg System.Reflection.Emit.ILGenerator
sequencePoint System.Linq.Expressions.DebugInfoExpression
return void
        internal override void MarkSequencePoint(LambdaExpression method, MethodBase methodBase, ILGenerator ilg, DebugInfoExpression sequencePoint) {
            MethodBuilder builder = methodBase as MethodBuilder;
            if (builder != null) {
                ilg.MarkSequencePoint(GetSymbolWriter(builder, sequencePoint.Document), sequencePoint.StartLine, sequencePoint.StartColumn, sequencePoint.EndLine, sequencePoint.EndColumn);
            }
        }

Same methods

SymbolDocumentGenerator::MarkSequencePoint ( LambdaExpression method, int ilOffset, DebugInfoExpression sequencePoint ) : void