4 overrides of OwnerDocument
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (1)
99
public override XmlDocument
OwnerDocument
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (1)
343
public override XmlDocument
OwnerDocument
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocumentFragment.cs (1)
85
public override XmlDocument
OwnerDocument
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (1)
120
public override XmlDocument
OwnerDocument
67 references to OwnerDocument
dotnet-svcutil-lib (67)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (2)
1271
ownerDocument = _source.
OwnerDocument
;
1862
Debug.Assert(node == _document || node.
OwnerDocument
== _document, "Navigator switched documents");
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttributeCollection.cs (13)
136
if (node.OwnerDocument != null && node.OwnerDocument != parent.
OwnerDocument
)
154
if (doc != null && doc != parent.
OwnerDocument
)
184
if (newNode.OwnerDocument != null && newNode.OwnerDocument != parent.
OwnerDocument
)
213
if (newNode.OwnerDocument != null && newNode.OwnerDocument != parent.
OwnerDocument
)
316
XmlAttribute defattr = parent.
OwnerDocument
.GetDefaultAttribute((XmlElement)parent, retNode.Prefix, retNode.LocalName, retNode.NamespaceURI);
333
if (parent.
OwnerDocument
== null)
335
XmlName attrname = parent.
OwnerDocument
.GetIDInfoByElement(parentElem.XmlName);
338
parent.
OwnerDocument
.AddElementWithId(attr.Value, parentElem); //add the element into the hashtable
349
if (parent.
OwnerDocument
== null)
351
XmlName attrname = parent.
OwnerDocument
.GetIDInfoByElement(parentElem.XmlName);
354
parent.
OwnerDocument
.RemoveElementWithId(attr.Value, parentElem); //remove the element from the hashtable
378
XmlDocument doc = parent.
OwnerDocument
;
394
XmlDocument doc = parent.
OwnerDocument
;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlCDATASection.cs (4)
25
return
OwnerDocument
.strCDataSectionName;
34
return
OwnerDocument
.strCDataSectionName;
74
Debug.Assert(
OwnerDocument
!= null);
75
return
OwnerDocument
.CreateCDataSection(Data);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlComment.cs (4)
22
get { return
OwnerDocument
.strCommentName; }
28
get { return
OwnerDocument
.strCommentName; }
40
Debug.Assert(
OwnerDocument
!= null);
41
return
OwnerDocument
.CreateComment(Data);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDeclaration.cs (2)
152
Debug.Assert(
OwnerDocument
!= null);
153
return
OwnerDocument
.CreateXmlDeclaration(Version, Encoding, Standalone);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocumentType.cs (2)
65
Debug.Assert(
OwnerDocument
!= null);
66
return
OwnerDocument
.CreateDocumentType(_name, _publicId, _systemId, _internalSubset);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlEntityReference.cs (5)
87
Debug.Assert(
OwnerDocument
!= null);
88
XmlEntityReference eref =
OwnerDocument
.CreateEntityReference(_name);
113
if (LastNode == null && node != null && node !=
OwnerDocument
)
181
return
OwnerDocument
.BaseURI;
204
XmlEntity ent =
OwnerDocument
.GetEntityNode(_name);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (4)
588
XmlDocument doc = dtNode.
OwnerDocument
;
598
_doc = dtNode.
OwnerDocument
;
757
_doc = parentNode.
OwnerDocument
;
881
_doc = eref.
OwnerDocument
;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (15)
41
XmlDocument doc =
OwnerDocument
;
175
return parentNode.
OwnerDocument
;
250
XmlDocument childDoc = newChild.
OwnerDocument
;
251
XmlDocument thisDoc =
OwnerDocument
;
364
XmlDocument childDoc = newChild.
OwnerDocument
;
365
XmlDocument thisDoc =
OwnerDocument
;
568
XmlDocument thisDoc =
OwnerDocument
;
582
XmlDocument childDoc = newChild.
OwnerDocument
;
836
XmlDocument doc =
OwnerDocument
;
944
AppendChild(
OwnerDocument
.CreateTextNode(value));
1049
return
OwnerDocument
;
1252
this.parentNode =
OwnerDocument
;
1294
XmlDocument doc =
OwnerDocument
;
1310
OwnerDocument
.BeforeEvent(args);
1316
OwnerDocument
.AfterEvent(args);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNodeReader.cs (1)
93
_doc = node.
OwnerDocument
;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlProcessingInstruction.cs (2)
90
Debug.Assert(
OwnerDocument
!= null);
91
return
OwnerDocument
.CreateProcessingInstruction(_target, _data);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlSignificantWhitespace.cs (4)
26
return
OwnerDocument
.strSignificantWhitespaceName;
35
return
OwnerDocument
.strSignificantWhitespaceName;
75
Debug.Assert(
OwnerDocument
!= null);
76
return
OwnerDocument
.CreateSignificantWhitespace(Data);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlText.cs (5)
28
return
OwnerDocument
.strTextName;
37
return
OwnerDocument
.strTextName;
77
Debug.Assert(
OwnerDocument
!= null);
78
return
OwnerDocument
.CreateTextNode(Data);
118
XmlText newTextNode =
OwnerDocument
.CreateTextNode(splitData);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlWhitespace.cs (4)
26
return
OwnerDocument
.strNonSignificantWhitespaceName;
35
return
OwnerDocument
.strNonSignificantWhitespaceName;
91
Debug.Assert(
OwnerDocument
!= null);
92
return
OwnerDocument
.CreateWhitespace(Data);