37 references to Value
System.Activities (37)
System\Activities\Debugger\CharacterSpottingTextReader.cs (1)
97DocumentLocation nextLocation = new DocumentLocation(afterLocation.LineNumber, new OneBasedCounter(afterLocation.LinePosition.Value + 1));
System\Activities\Debugger\DocumentLocation.cs (12)
46return (this.lineNumber.Value == that.lineNumber.Value) && (this.linePosition.Value == that.linePosition.Value); 51return this.lineNumber.Value.GetHashCode() ^ this.linePosition.Value.GetHashCode(); 62if (this.lineNumber.Value == that.lineNumber.Value) 65return this.linePosition.Value - that.linePosition.Value; 70return this.lineNumber.Value - that.lineNumber.Value;
System\Activities\Debugger\DocumentRange.cs (6)
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 (16)
581int startLine = attributeValueLocation.Start.LineNumber.Value; 582int startColumn = attributeValueLocation.Start.LinePosition.Value; 583int endLine = attributeValueLocation.End.LineNumber.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)); 644this.InjectLineInfoMemberToBuffer(this.StartLineMember, startPosition.LineNumber.Value); 645this.InjectLineInfoMemberToBuffer(this.StartColumnMember, startPosition.LinePosition.Value); 646this.InjectLineInfoMemberToBuffer(this.EndLineMember, endPosition.LineNumber.Value); 647this.InjectLineInfoMemberToBuffer(this.EndColumnMember, endPosition.LinePosition.Value); 758valueRange.Start.LineNumber.Value, 759valueRange.Start.LinePosition.Value, 760valueRange.End.LineNumber.Value, 761valueRange.End.LinePosition.Value),
System\Activities\Debugger\XmlReaderWithSourceLocation.cs (2)
230int linePosition = contentEnd.LinePosition.Value - 1; 239return new DocumentLocation(contentEnd.LineNumber.Value, linePosition);