10 instantiations of SourceLineInfo
System.Data.SqlXml (10)
System\Xml\Xsl\QIL\QilXmlReader.cs (1)
409return new SourceLineInfo("",
System\Xml\Xsl\SourceLineInfo.cs (1)
64public static SourceLineInfo NoSource = new SourceLineInfo(string.Empty, NoSourceMagicNumber, 0, NoSourceMagicNumber, 0);
System\Xml\Xsl\XslException.cs (2)
100lineInfo = new SourceLineInfo(uriString, startLine, startPos, endLine, endPos); 149SetSourceLineInfo(new SourceLineInfo(error.FileName, errorLine, errorColumn, errorLine, errorColumn));
System\Xml\Xsl\Xslt\Scripts.cs (1)
79return new SourceLineInfo(this.endUri, this.endLoc, this.endLoc);
System\Xml\Xsl\Xslt\XsltInput.cs (4)
894return new SourceLineInfo(Uri, Start, End); 915return new SourceLineInfo(Uri, new Location(line, pos), new Location(line, pos + QualifiedName.Length)); 926return new SourceLineInfo(reader.BaseURI, loc, loc); 994elemNameLi = new SourceLineInfo(
System\Xml\Xsl\Xslt\XsltLoader.cs (1)
240new SourceLineInfo(ex.SourceUri, ex.LineNumber, ex.LinePosition, ex.LineNumber, ex.LinePosition) :
12 references to SourceLineInfo
System.Data.SqlXml (12)
System\Xml\Xsl\IlGen\GenerateHelper.cs (5)
819MarkSequencePoint(SourceLineInfo.NoSource); 841MarkSequencePoint(SourceLineInfo.NoSource); 1405lastFileName = SourceLineInfo.GetFileName(uriString); 1457DebugSequencePoint(SourceLineInfo.NoSource); 1662MarkSequencePoint(SourceLineInfo.NoSource);
System\Xml\Xsl\SourceLineInfo.cs (1)
64public static SourceLineInfo NoSource = new SourceLineInfo(string.Empty, NoSourceMagicNumber, 0, NoSourceMagicNumber, 0);
System\Xml\Xsl\XslException.cs (1)
171string fileName = SourceLineInfo.GetFileName(lineInfo.Uri);
System\Xml\Xsl\Xslt\QilGenerator.cs (4)
489paramFunc.SourceLine = SourceLineInfo.NoSource; 521SetLineInfo(tmpl.Function, tmpl.SourceLine ?? SourceLineInfo.NoSource); 1903it.SourceLine = SourceLineInfo.NoSource; 2340SourceLineInfo.Validate(lineInfo);
System\Xml\Xsl\Xslt\Scripts.cs (1)
66string fileName = SourceLineInfo.GetFileName(uriString);