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