**** Merged from MCS ****
[mono-project.git] / mcs / class / System.XML / System.Xml / XmlDocumentFragment.cs
blob0e3848d00b5e4793eaaa484bc39f8d33994eaf18
1 //
2 // System.Xml.XmlDocumentFragment
3 //
4 // Author:
5 // Duncan Mak (duncan@ximian.com)
6 // Atsushi Enomoto (ginga@kit.hi-ho.ne.jp)
7 //
8 // (C), Ximian, Inc
9 // (C)2002 Atsushi Enomoto
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 //
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 //
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 using System;
32 using System.IO;
33 using System.Text;
34 using System.Xml.XPath;
36 namespace System.Xml
38 public class XmlDocumentFragment : XmlNode
41 #region Constructor
43 protected internal XmlDocumentFragment (XmlDocument doc)
44 : base (doc)
48 #endregion
50 #region Properties
52 public override string InnerXml {
53 set {
54 // Copied from XmlElement.InnerXml (in the meantime;-))
55 for (int i = 0; i < ChildNodes.Count; i++)
56 this.RemoveChild (ChildNodes [i]);
58 // I hope there are any well-performance logic...
59 XmlNamespaceManager nsmgr = this.ConstructNamespaceManager ();
60 XmlParserContext ctx = new XmlParserContext (OwnerDocument.NameTable, nsmgr,
61 OwnerDocument.DocumentType != null ? OwnerDocument.DocumentType.DTD : null,
62 BaseURI, XmlLang, XmlSpace, null);
63 XmlTextReader xmlReader = new XmlTextReader (value, XmlNodeType.Element, ctx);
64 xmlReader.XmlResolver = OwnerDocument.Resolver;
66 do {
67 XmlNode n = OwnerDocument.ReadNode (xmlReader);
68 if(n == null) break;
69 AppendChild (n);
70 } while (true);
72 get {
73 StringBuilder sb = new StringBuilder ();
74 for (int i = 0; i < ChildNodes.Count; i++)
75 sb.Append (ChildNodes [i].OuterXml);
76 return sb.ToString ();
80 public override string LocalName {
81 get { return "#document-fragment"; }
85 public override string Name {
86 get { return "#document-fragment"; }
89 public override XmlNodeType NodeType {
90 get { return XmlNodeType.DocumentFragment; }
93 public override XmlDocument OwnerDocument {
94 get { return base.OwnerDocument; }
97 public override XmlNode ParentNode {
98 get { return null; } // it's always null here.
101 internal override XPathNodeType XPathNodeType
103 get { return XPathNodeType.Root; }
105 #endregion
107 #region Methods
108 public override XmlNode CloneNode (bool deep)
110 if (deep) { // clone document + child nodes
111 XmlNode node = FirstChild;
113 while ((node != null) && (node.HasChildNodes)) {
114 AppendChild (node.NextSibling.CloneNode (false));
115 node = node.NextSibling;
118 return node;
119 } else
120 return new XmlDocumentFragment (OwnerDocument);
123 public override void WriteContentTo (XmlWriter w)
125 for (int i = 0; i < ChildNodes.Count; i++)
126 ChildNodes [i].WriteContentTo (w);
129 public override void WriteTo (XmlWriter w)
131 for (int i = 0; i < ChildNodes.Count; i++)
132 ChildNodes [i].WriteTo (w);
135 #endregion