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