using System; using Cpp2IlInjected; namespace System.Xml { /// Represents a lightweight object that is useful for tree insert operations. // Token: 0x0200003E RID: 62 [Token(Token = "0x200003E")] public class XmlDocumentFragment : XmlNode { /// Initializes a new instance of the class. /// The XML document that is the source of the fragment. // Token: 0x060002C5 RID: 709 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60002C5")] [Address(RVA = "0x466770", Offset = "0x465570", VA = "0x180466770")] protected internal XmlDocumentFragment(XmlDocument ownerDocument) { } /// Gets the qualified name of the node. /// For , the name is . // Token: 0x1700010F RID: 271 // (get) Token: 0x060002C6 RID: 710 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700010F")] public override string Name { [Token(Token = "0x60002C6")] [Address(RVA = "0x466800", Offset = "0x465600", VA = "0x180466800", Slot = "6")] get { return null; } } /// Gets the local name of the node. /// For nodes, the local name is . // Token: 0x17000110 RID: 272 // (get) Token: 0x060002C7 RID: 711 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000110")] public override string LocalName { [Token(Token = "0x60002C7")] [Address(RVA = "0x466800", Offset = "0x465600", VA = "0x180466800", Slot = "31")] get { return null; } } /// Gets the type of the current node. /// For nodes, this value is XmlNodeType.DocumentFragment. // Token: 0x17000111 RID: 273 // (get) Token: 0x060002C8 RID: 712 RVA: 0x00003120 File Offset: 0x00001320 [Token(Token = "0x17000111")] public override XmlNodeType NodeType { [Token(Token = "0x60002C8")] [Address(RVA = "0x466830", Offset = "0x465630", VA = "0x180466830", Slot = "9")] get { return XmlNodeType.None; } } /// Gets the parent of this node (for nodes that can have parents). /// The parent of this node.For nodes, this property is always . // Token: 0x17000112 RID: 274 // (get) Token: 0x060002C9 RID: 713 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000112")] public override XmlNode ParentNode { [Token(Token = "0x60002C9")] [Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "10")] get { return null; } } /// Gets the to which this node belongs. /// The to which this node belongs. // Token: 0x17000113 RID: 275 // (get) Token: 0x060002CA RID: 714 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000113")] public override XmlDocument OwnerDocument { [Token(Token = "0x60002CA")] [Address(RVA = "0x466840", Offset = "0x465640", VA = "0x180466840", Slot = "15")] get { return null; } } /// Gets or sets the markup representing the children of this node. /// The markup of the children of this node. /// The XML specified when setting this property is not well-formed. // Token: 0x17000114 RID: 276 // (set) Token: 0x060002CB RID: 715 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000114")] public override string InnerXml { [Token(Token = "0x60002CB")] [Address(RVA = "0x4668C0", Offset = "0x4656C0", VA = "0x1804668C0", Slot = "35")] set { } } /// Creates a duplicate of this node. /// /// to recursively clone the subtree under the specified node; to clone only the node itself. /// The cloned node. // Token: 0x060002CC RID: 716 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60002CC")] [Address(RVA = "0x466620", Offset = "0x465420", VA = "0x180466620", Slot = "27")] public override XmlNode CloneNode(bool deep) { return null; } // Token: 0x17000115 RID: 277 // (get) Token: 0x060002CD RID: 717 RVA: 0x00003138 File Offset: 0x00001338 [Token(Token = "0x17000115")] internal override bool IsContainer { [Token(Token = "0x60002CD")] [Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "18")] get { return default(bool); } } // Token: 0x17000116 RID: 278 // (get) Token: 0x060002CE RID: 718 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x060002CF RID: 719 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000116")] internal override XmlLinkedNode LastNode { [Token(Token = "0x60002CE")] [Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40", Slot = "19")] get { return null; } [Token(Token = "0x60002CF")] [Address(RVA = "0x3F7210", Offset = "0x3F6010", VA = "0x1803F7210", Slot = "20")] set { } } // Token: 0x060002D0 RID: 720 RVA: 0x00003150 File Offset: 0x00001350 [Token(Token = "0x60002D0")] [Address(RVA = "0x4666C0", Offset = "0x4654C0", VA = "0x1804666C0", Slot = "24")] internal override bool IsValidChildType(XmlNodeType type) { return default(bool); } // Token: 0x060002D1 RID: 721 RVA: 0x00003168 File Offset: 0x00001368 [Token(Token = "0x60002D1")] [Address(RVA = "0x4665A0", Offset = "0x4653A0", VA = "0x1804665A0", Slot = "25")] internal override bool CanInsertAfter(XmlNode newChild, XmlNode refChild) { return default(bool); } // Token: 0x04000165 RID: 357 [FieldOffset(Offset = "0x18")] [Token(Token = "0x4000165")] private XmlLinkedNode lastChild; } }