9 instantiations of XPathDocument
System.Data.Entity (1)
System\Data\Mapping\StorageMappingItemLoader.cs (1)
198XPathDocument doc = new XPathDocument(reader);
System.Data.SqlXml (2)
System\Xml\Xsl\Runtime\XmlQueryContext.cs (2)
163return new XPathDocument(WhitespaceRuleReader.CreateReader(reader, this.wsRules), XmlSpace.Preserve).CreateNavigator(); 173return new XPathDocument(WhitespaceRuleReader.CreateReader(dataSource as XmlReader, this.wsRules), XmlSpace.Preserve).CreateNavigator();
System.Web (3)
UI\WebControls\xml.cs (1)
531_xpathDocument = new XPathDocument(XmlUtils.CreateXmlReader(stream, physicalPath));
Util\XmlUtils.cs (2)
44return new XPathDocument(CreateXmlReader(reader)); 47return new XPathDocument(reader);
System.Xml (3)
System\Xml\Xslt\XslTransform.cs (3)
59Load(new XPathDocument(stylesheet, XmlSpace.Preserve), resolver); 113Load(new XPathDocument(stylesheet, XmlSpace.Preserve), resolver, evidence); 238XPathDocument doc = new XPathDocument(inputfile);
38 references to XPathDocument
System.Data.Entity (1)
System\Data\Mapping\StorageMappingItemLoader.cs (1)
198XPathDocument doc = new XPathDocument(reader);
System.Data.SqlXml (17)
System\Xml\Xsl\Runtime\RtfNavigator.cs (8)
397XPathDocument doc = new XPathDocument(nameTable); 398XmlRawWriter writer = doc.LoadFromWriter(XPathDocument.LoadFlags.AtomizeNames | (events.HasRootNode ? XPathDocument.LoadFlags.None : XPathDocument.LoadFlags.Fragment), events.BaseUri); 406return ((XPathDocument) this.cache).CreateNavigator(); 418XPathDocument doc = new XPathDocument(nameTable); 419XmlRawWriter writer = doc.LoadFromWriter(XPathDocument.LoadFlags.AtomizeNames, baseUri); 426return ((XPathDocument) this.cache).CreateNavigator();
System\Xml\Xsl\Runtime\XmlSequenceWriter.cs (4)
62private XPathDocument doc; 87this.writer = doc.LoadFromWriter(XPathDocument.LoadFlags.AtomizeNames | (rootType == XPathNodeType.Root ? XPathDocument.LoadFlags.None : XPathDocument.LoadFlags.Fragment), string.Empty);
System\Xml\Xsl\Runtime\XsltConvert.cs (2)
145XPathDocument doc = new XPathDocument(); 146XmlRawWriter writer = doc.LoadFromWriter(XPathDocument.LoadFlags.AtomizeNames, string.Empty);
System\Xml\Xsl\XsltOld\Compiler.cs (1)
480internal static XPathDocument LoadDocument(XmlTextReaderImpl reader) {
System\Xml\Xsl\XsltOld\NavigatorOutput.cs (2)
18private XPathDocument doc; 29this.wr = doc.LoadFromWriter(XPathDocument.LoadFlags.AtomizeNames, baseUri);
System.Web (3)
UI\WebControls\xml.cs (2)
99private XPathDocument _xpathDocument; 519_xpathDocument = (XPathDocument)cacheInternal.Get(key);
Util\XmlUtils.cs (1)
40public static XPathDocument CreateXPathDocumentFromContent(string content)
System.Xml (17)
System\Xml\Cache\XPathDocumentBuilder.cs (7)
43private XPathDocument doc; // Currently building document 66public XPathDocumentBuilder(XPathDocument doc, IXmlLineInfo lineInfo, string baseUri, XPathDocument.LoadFlags flags) { 80public void Initialize(XPathDocument doc, IXmlLineInfo lineInfo, string baseUri, XPathDocument.LoadFlags flags) { 86this.atomizeNames = (flags & XPathDocument.LoadFlags.AtomizeNames) != 0; 107if ((flags & XPathDocument.LoadFlags.Fragment) == 0) {
System\Xml\Cache\XPathDocumentNavigator.cs (2)
708XPathDocument thisDoc = this.pageCurrent[this.idxCurrent].Document; 709XPathDocument thatDoc = that.pageCurrent[that.idxCurrent].Document;
System\Xml\Cache\XPathNode.cs (1)
114public XPathDocument Document {
System\Xml\Cache\XPathNodeHelper.cs (1)
43XPathDocument doc;
System\Xml\Cache\XPathNodeInfoAtom.cs (5)
85private XPathDocument doc; 107XPathDocument doc, int lineNumBase, int linePosBase) { 116XPathDocument doc, int lineNumBase, int linePosBase) { 197public XPathDocument Document { 365XPathDocument doc, int lineNumBase, int linePosBase) {
System\Xml\Xslt\XslTransform.cs (1)
238XPathDocument doc = new XPathDocument(inputfile);