14 references to LineNumber
System.Activities (14)
System\Activities\Debugger\CharacterSpottingTextReader.cs (1)
97DocumentLocation nextLocation = new DocumentLocation(afterLocation.LineNumber, new OneBasedCounter(afterLocation.LinePosition.Value + 1));
System\Activities\Debugger\DocumentRange.cs (4)
20UnitTestUtility.Assert((start.LineNumber.Value < end.LineNumber.Value) || ((start.LineNumber.Value == end.LineNumber.Value) && (start.LinePosition.Value <= end.LinePosition.Value)), "Start cannot before go after End.");
System\Activities\Debugger\XamlDebuggerXmlReader.cs (8)
581int startLine = attributeValueLocation.Start.LineNumber.Value; 583int endLine = attributeValueLocation.End.LineNumber.Value; 617DocumentLocation myRealEndBracket = new DocumentLocation(myEndBracket.LineNumber.Value, myEndBracket.LinePosition.Value + 1); 626new DocumentLocation(valueRange.End.LineNumber.Value, valueRange.End.LinePosition.Value + 1)); 644this.InjectLineInfoMemberToBuffer(this.StartLineMember, startPosition.LineNumber.Value); 646this.InjectLineInfoMemberToBuffer(this.EndLineMember, endPosition.LineNumber.Value); 758valueRange.Start.LineNumber.Value, 760valueRange.End.LineNumber.Value,
System\Activities\Debugger\XmlReaderWithSourceLocation.cs (1)
239return new DocumentLocation(contentEnd.LineNumber.Value, linePosition);