12 references to LinePosition
System.Activities (12)
System\Activities\Debugger\CharacterSpottingTextReader.cs (1)
97DocumentLocation nextLocation = new DocumentLocation(afterLocation.LineNumber, new OneBasedCounter(afterLocation.LinePosition.Value + 1));
System\Activities\Debugger\DocumentRange.cs (2)
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)
582int startColumn = attributeValueLocation.Start.LinePosition.Value; 584int endColumn = attributeValueLocation.End.LinePosition.Value; 617DocumentLocation myRealEndBracket = new DocumentLocation(myEndBracket.LineNumber.Value, myEndBracket.LinePosition.Value + 1); 626new DocumentLocation(valueRange.End.LineNumber.Value, valueRange.End.LinePosition.Value + 1)); 645this.InjectLineInfoMemberToBuffer(this.StartColumnMember, startPosition.LinePosition.Value); 647this.InjectLineInfoMemberToBuffer(this.EndColumnMember, endPosition.LinePosition.Value); 759valueRange.Start.LinePosition.Value, 761valueRange.End.LinePosition.Value),
System\Activities\Debugger\XmlReaderWithSourceLocation.cs (1)
230int linePosition = contentEnd.LinePosition.Value - 1;