2 implementations of End
System.Data.SqlXml (2)
System\Xml\Xsl\SourceLineInfo.cs (1)
54
public Location
End
{ get { return this.end ; } }
System\Xml\Xsl\Xslt\XsltInput.cs (1)
1020
public Location
End
{ get { return elementTagLi.End ; } }
15 references to End
System.Data.SqlXml (15)
System\Xml\Xsl\IlGen\GenerateHelper.cs (2)
1433
this.ilgen.MarkSequencePoint(symDoc, sourceInfo.Start.Line, sourceInfo.Start.Pos, sourceInfo.
End
.Line, sourceInfo.
End
.Pos);
System\Xml\Xsl\QIL\QilXmlWriter.cs (2)
122
node.SourceLine.
End
.Line , node.SourceLine.
End
.Pos
System\Xml\Xsl\SourceLineInfo.cs (5)
73
Debug.Assert(lineInfo.Start.Line == lineInfo.
End
.Line);
74
Debug.Assert(lineInfo.Start.Pos == 0 && lineInfo.
End
.Pos == 0);
77
Debug.Assert(0 < lineInfo.
End
.Line && 0 < lineInfo.
End
.Pos , "0 < end");
78
Debug.Assert(lineInfo.Start.LessOrEqual(lineInfo.
End
), "start <= end");
System\Xml\Xsl\XslException.cs (2)
113
info.AddValue("EndLine" , lineInfo.
End
.Line);
114
info.AddValue("EndPos" , lineInfo.
End
.Pos );
System\Xml\Xsl\Xslt\QilGenerator.cs (1)
2341
if (0 < lineInfo.Start.Line && lineInfo.Start.LessOrEqual(lineInfo.
End
)) {
System\Xml\Xsl\Xslt\XsltInput.cs (3)
1019
public Location Start { get { return new Location(elementTagLi.
End
.Line, elementTagLi.
End
.Pos - 2); } }
1020
public Location End { get { return elementTagLi.
End
; } }