Base:
property
OwnerDocument
System.Xml.XmlNode.OwnerDocument
57 references to OwnerDocument
PresentationFramework (13)
MS\Internal\Annotations\XmlElementCollection.cs (13)
145Invariant.Assert(_xmlDocsRefCounts.ContainsKey(element.OwnerDocument), "Not registered on XmlElement"); 148_xmlDocsRefCounts[element.OwnerDocument]--; 152if (_xmlDocsRefCounts[element.OwnerDocument] == 0) 154element.OwnerDocument.NodeChanged -= OnNodeChanged; 155element.OwnerDocument.NodeInserted -= OnNodeChanged; 156element.OwnerDocument.NodeRemoved -= OnNodeChanged; 157_xmlDocsRefCounts.Remove(element.OwnerDocument); 175if (!_xmlDocsRefCounts.ContainsKey(element.OwnerDocument)) 179_xmlDocsRefCounts[element.OwnerDocument] = 1; 181element.OwnerDocument.NodeChanged += handler; 182element.OwnerDocument.NodeInserted += handler; 183element.OwnerDocument.NodeRemoved += handler; 188_xmlDocsRefCounts[element.OwnerDocument]++;
System.Data.Common (10)
System\Data\XDRSchema.cs (2)
92vn = node.OwnerDocument.FirstChild; 93vnRoof = node.OwnerDocument;
System\Xml\RegionIterator.cs (1)
23internal RegionIterator(XmlBoundElement rowElement) : base(((XmlDataDocument)(rowElement.OwnerDocument)).Mapper)
System\Xml\XmlBoundElement.cs (7)
159XmlDataDocument doc = (XmlDataDocument)OwnerDocument; 204XmlDataDocument doc = (XmlDataDocument)OwnerDocument; 211XmlDataDocument doc = (XmlDataDocument)OwnerDocument; 217XmlDataDocument doc = (XmlDataDocument)(OwnerDocument); 239DataPointer dp = new DataPointer((XmlDataDocument)OwnerDocument, this); 253DataPointer dp = new DataPointer((XmlDataDocument)OwnerDocument, this); 268XmlDataDocument doc = (XmlDataDocument)OwnerDocument;
System.Private.Xml (8)
System\Xml\Dom\XmlElement.cs (8)
54Debug.Assert(OwnerDocument != null); 55XmlDocument doc = OwnerDocument; 244lock (OwnerDocument.objLock) 284attr = OwnerDocument.CreateAttribute(name); 355attr = OwnerDocument.CreateAttribute(string.Empty, localName, namespaceURI); 387attr = OwnerDocument.CreateAttribute(string.Empty, localName, namespaceURI); 610AppendChild(OwnerDocument.CreateTextNode(value)); 638if (ns == OwnerDocument.strReservedXmlns)
System.Security.Cryptography.Xml (26)
System\Security\Cryptography\Xml\CanonicalXmlElement.cs (2)
59XmlAttribute nsattrib = (XmlAttribute)OwnerDocument.CreateAttribute(name); 131XmlAttribute nsattrib = (XmlAttribute)OwnerDocument.CreateAttribute(name);
System\Security\Cryptography\Xml\CipherData.cs (1)
103XmlNamespaceManager nsm = new XmlNamespaceManager(value.OwnerDocument.NameTable);
System\Security\Cryptography\Xml\CipherReference.cs (1)
80XmlNamespaceManager nsm = new XmlNamespaceManager(value.OwnerDocument.NameTable);
System\Security\Cryptography\Xml\DSAKeyValue.cs (1)
159XmlNamespaceManager xmlNamespaceManager = new XmlNamespaceManager(value.OwnerDocument.NameTable);
System\Security\Cryptography\Xml\EncryptedData.cs (1)
17XmlNamespaceManager nsm = new XmlNamespaceManager(value.OwnerDocument.NameTable);
System\Security\Cryptography\Xml\EncryptedKey.cs (1)
56XmlNamespaceManager nsm = new XmlNamespaceManager(value.OwnerDocument.NameTable);
System\Security\Cryptography\Xml\EncryptedReference.cs (1)
119XmlNamespaceManager nsm = new XmlNamespaceManager(value.OwnerDocument.NameTable);
System\Security\Cryptography\Xml\EncryptedXml.cs (2)
788XmlNode importedNode = inputElement.OwnerDocument.ImportNode(importDocument.DocumentElement!, true); 839XmlElement elemED = encryptedData.GetXml(inputElement.OwnerDocument);
System\Security\Cryptography\Xml\EncryptionMethod.cs (1)
86XmlNamespaceManager nsm = new XmlNamespaceManager(value.OwnerDocument.NameTable);
System\Security\Cryptography\Xml\KeyInfoX509Data.cs (1)
278XmlNamespaceManager nsm = new XmlNamespaceManager(element.OwnerDocument.NameTable);
System\Security\Cryptography\Xml\Reference.cs (4)
219XmlNamespaceManager nsm = new XmlNamespaceManager(value.OwnerDocument.NameTable); 277referenceTarget = transformElement.OwnerDocument; 284referenceTarget = transformElement.OwnerDocument; 288referenceTarget = SignedXml!.GetIdElement(transformElement.OwnerDocument, idref);
System\Security\Cryptography\Xml\RSAKeyValue.cs (1)
114XmlNamespaceManager xmlNamespaceManager = new XmlNamespaceManager(value.OwnerDocument.NameTable);
System\Security\Cryptography\Xml\Signature.cs (1)
148XmlNamespaceManager nsm = new XmlNamespaceManager(value.OwnerDocument.NameTable);
System\Security\Cryptography\Xml\SignedInfo.cs (1)
214XmlNamespaceManager nsm = new XmlNamespaceManager(value.OwnerDocument.NameTable);
System\Security\Cryptography\Xml\SignedXml.cs (1)
121_containingDocument = element?.OwnerDocument;
System\Security\Cryptography\Xml\TransformChain.cs (1)
176XmlNamespaceManager nsm = new XmlNamespaceManager(value.OwnerDocument.NameTable);
System\Security\Cryptography\Xml\Utils.cs (5)
467XmlAttribute nsattrib = (XmlAttribute)elem.OwnerDocument.CreateAttribute(name); 481XmlAttribute nsattrib = (XmlAttribute)elem.OwnerDocument.CreateAttribute(key); 512XmlAttribute nsattrib = elem.OwnerDocument.CreateAttribute(name); 525XmlAttribute nsattrib = elem.OwnerDocument.CreateAttribute("xmlns"); 545XmlAttribute nsattrib = elem.OwnerDocument.CreateAttribute(name);