3 writes to EndLine
System.Activities (3)
System\Activities\Debugger\SourceLocationProvider.cs (1)
402EndLine = sourceLocation.EndLine,
System\Activities\Debugger\Symbol\ActivitySymbol.cs (1)
65this.EndLine = SymbolHelper.ReadEncodedInt32(reader);
System\Activities\Debugger\Symbol\WorkflowSymbol.cs (1)
192EndLine = int.Parse(symbolSegments[3], CultureInfo.InvariantCulture),
3 references to EndLine
System.Activities (3)
System\Activities\Debugger\SourceLocationProvider.cs (1)
244new SourceLocation(symbol.FileName, symbol.GetChecksum(), actSym.StartLine, actSym.StartColumn, actSym.EndLine, actSym.EndColumn));
System\Activities\Debugger\Symbol\ActivitySymbol.cs (2)
47SymbolHelper.WriteEncodedInt32(writer, this.EndLine); 80return string.Format(CultureInfo.InvariantCulture, "{0},{1},{2},{3},{4}", this.Id, this.StartLine, this.StartColumn, this.EndLine, this.EndColumn);