2 implementations of End
System.Private.Xml (2)
System\Xml\Xsl\SourceLineInfo.cs (1)
48
public Location
End
{ get { return this.end; } }
System\Xml\Xsl\Xslt\XsltInput.cs (1)
1202
public Location
End
{ get { return _elementTagLi.End; } }
15 references to End
System.Private.Xml (15)
System\Xml\Xsl\IlGen\GenerateHelper.cs (2)
1523
_writerDump!.WriteLine("//[{0},{1} -- {2},{3}]", sourceInfo.Start.Line, sourceInfo.Start.Pos, sourceInfo.
End
.Line, sourceInfo.
End
.Pos);
System\Xml\Xsl\QIL\QilXmlWriter.cs (2)
128
node.SourceLine.
End
.Line, node.SourceLine.
End
.Pos
System\Xml\Xsl\SourceLineInfo.cs (5)
70
Debug.Assert(lineInfo.Start.Line == lineInfo.
End
.Line);
71
Debug.Assert(lineInfo.Start.Pos == 0 && lineInfo.
End
.Pos == 0);
76
Debug.Assert(0 < lineInfo.
End
.Line && 0 < lineInfo.
End
.Pos, "0 < end");
77
Debug.Assert(lineInfo.Start.LessOrEqual(lineInfo.
End
), "start <= end");
System\Xml\Xsl\XslException.cs (2)
180
info.AddValue("EndLine", _lineInfo.
End
.Line, typeof(int));
181
info.AddValue("EndPos", _lineInfo.
End
.Pos, typeof(int));
System\Xml\Xsl\Xslt\QilGenerator.cs (1)
2804
if (0 < lineInfo.Start.Line && lineInfo.Start.LessOrEqual(lineInfo.
End
))
System\Xml\Xsl\Xslt\XsltInput.cs (3)
1201
public Location Start { get { return new Location(_elementTagLi.
End
.Line, _elementTagLi.
End
.Pos - 2); } }
1202
public Location End { get { return _elementTagLi.
End
; } }