3 writes to StartLine
System.Activities (3)
System\Activities\Debugger\SourceLocationProvider.cs (1)
400StartLine = sourceLocation.StartLine,
System\Activities\Debugger\Symbol\ActivitySymbol.cs (1)
63this.StartLine = SymbolHelper.ReadEncodedInt32(reader);
System\Activities\Debugger\Symbol\WorkflowSymbol.cs (1)
190StartLine = int.Parse(symbolSegments[1], CultureInfo.InvariantCulture),
3 references to StartLine
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)
45SymbolHelper.WriteEncodedInt32(writer, this.StartLine); 80return string.Format(CultureInfo.InvariantCulture, "{0},{1},{2},{3},{4}", this.Id, this.StartLine, this.StartColumn, this.EndLine, this.EndColumn);